代码搜索:OUT

找到约 10,000 项符合「OUT」的源代码

代码结果 10,000
www.eeworm.com/read/376006/2718063

out conversion.out

-- -- create user defined conversion -- CREATE USER conversion_test_user WITH NOCREATEDB NOCREATEUSER; SET SESSION AUTHORIZATION conversion_test_user; CREATE CONVERSION myconv FOR 'LATIN1' TO 'UTF8' F
www.eeworm.com/read/376006/2718064

out random.out

-- -- RANDOM -- Test the random function -- -- count the number of tuples originally, should be 1000 SELECT count(*) FROM onek; count ------- 1000 (1 row) -- pick three random rows, they shouldn'
www.eeworm.com/read/376006/2718065

out insert.out

-- -- insert with DEFAULT in the target_list -- create table inserttest (col1 int4, col2 int4 NOT NULL, col3 text default 'testing'); insert into inserttest (col1, col2, col3) values (DEFAULT, DEFAULT
www.eeworm.com/read/376006/2718070

out text.out

-- -- TEXT -- SELECT text 'this is a text string' = text 'this is a text string' AS true; true ------ t (1 row) SELECT text 'this is a text string' = text 'this is a text strin' AS false; false
www.eeworm.com/read/376006/2718071

out rowtypes.out

-- -- ROWTYPES -- -- Make both a standalone composite type and a table rowtype create type complex as (r float8, i float8); create temp table fullname (first text, last text); -- Nested composite crea
www.eeworm.com/read/376006/2718072

out combocid.out

-- -- Tests for some likely failure cases with combo cmin/cmax mechanism -- CREATE TEMP TABLE combocidtest (foobar int); BEGIN; -- a few dummy ops to push up the CommandId counter INSERT INTO combocid
www.eeworm.com/read/376006/2718073

out temp.out

-- -- TEMP -- Test temp relations and indexes -- -- test temp table/index masking CREATE TABLE temptest(col int); CREATE INDEX i_temptest ON temptest(col); CREATE TEMP TABLE temptest(tcol int); CREATE
www.eeworm.com/read/376006/2718074

out returning.out

-- -- Test INSERT/UPDATE/DELETE RETURNING -- -- Simple cases CREATE TEMP TABLE foo (f1 serial, f2 text, f3 int default 42); NOTICE: CREATE TABLE will create implicit sequence "foo_f1_seq" for serial
www.eeworm.com/read/376006/2718075

out triggers.out

-- -- TRIGGERS -- create table pkeys (pkey1 int4 not null, pkey2 text not null); create table fkeys (fkey1 int4, fkey2 text, fkey3 int); create table fkeys2 (fkey21 int4, fkey22 text, pkey23 int not n
www.eeworm.com/read/376006/2718077

out plpgsql.out

-- -- PLPGSQL -- -- Scenario: -- -- A building with a modern TP cable installation where any -- of the wall connectors can be used to plug in phones, -- ethernet interfaces or local offic