代码搜索:OUT

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

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

out cluster.out

-- -- CLUSTER -- CREATE TABLE clstr_tst_s (rf_a SERIAL PRIMARY KEY, b INT); NOTICE: CREATE TABLE will create implicit sequence "clstr_tst_s_rf_a_seq" for serial column "clstr_tst_s.rf_a" NOTICE: C
www.eeworm.com/read/376006/2718095

out vacuum.out

-- -- VACUUM -- CREATE TABLE vactst (i INT); INSERT INTO vactst VALUES (1); INSERT INTO vactst SELECT * FROM vactst; INSERT INTO vactst SELECT * FROM vactst; INSERT INTO vactst SELECT * FROM vactst; I
www.eeworm.com/read/376006/2718096

out oidjoins.out

-- -- This is created by pgsql/contrib/findoidjoins/make_oidjoin_check -- SELECT ctid, aggfnoid FROM pg_catalog.pg_aggregate fk WHERE aggfnoid != 0 AND NOT EXISTS(SELECT 1 FROM pg_catalog.pg_proc
www.eeworm.com/read/376006/2718099

out limit.out

-- -- LIMIT -- Check the LIMIT/OFFSET feature of SELECT -- SELECT ''::text AS two, unique1, unique2, stringu1 FROM onek WHERE unique1 > 50 ORDER BY unique1 LIMIT 2; two | unique1 | unique2 | st
www.eeworm.com/read/376006/2718101

out path.out

-- -- PATH -- --DROP TABLE PATH_TBL; CREATE TABLE PATH_TBL (f1 path); INSERT INTO PATH_TBL VALUES ('[(1,2),(3,4)]'); INSERT INTO PATH_TBL VALUES ('((1,2),(3,4))'); INSERT INTO PATH_TBL VALUES ('[(0,0)
www.eeworm.com/read/376006/2718102

out abstime.out

-- -- ABSTIME -- testing built-in time type abstime -- uses reltime and tinterval -- -- -- timezones may vary based not only on location but the operating -- system. the main correctness issue is tha
www.eeworm.com/read/376006/2718104

out rangefuncs.out

SELECT name, setting FROM pg_settings WHERE name LIKE 'enable%'; name | setting -------------------+--------- enable_bitmapscan | on enable_hashagg | on enable_hashjoin | on en
www.eeworm.com/read/376006/2718105

out timestamp.out

-- -- TIMESTAMP -- CREATE TABLE TIMESTAMP_TBL (d1 timestamp(2) without time zone); -- Test shorthand input values -- We can't just "select" the results since they aren't constants; test for -- equalit
www.eeworm.com/read/376006/2718106

out time.out

-- -- TIME -- CREATE TABLE TIME_TBL (f1 time(2)); INSERT INTO TIME_TBL VALUES ('00:00'); INSERT INTO TIME_TBL VALUES ('01:00'); -- as of 7.4, timezone spec should be accepted and ignored INSERT INTO T
www.eeworm.com/read/376006/2718107

out domain.out

-- -- Test domains. -- -- Test Comment / Drop create domain domaindroptest int4; comment on domain domaindroptest is 'About to drop this..'; create domain dependenttypetest domaindroptest; -- fail bec