Sha256: 876be8e63e5402dec4205c0f0ff7c6a783d621250fc5aa716be895481a93f74d

Contents?: true

Size: 791 Bytes

Versions: 12

Compression:

Stored size: 791 Bytes

Contents

INSERT INTO rel1 DEFAULT VALUES
INSERT INTO rel2 DEFAULT VALUES
INSERT INTO rel2(c1) VALUES(1)
INSERT INTO rel1 VALUES(1, now(), 2, CURRENT_DATE)
INSERT INTO rel1 VALUES(3, CURRENT_TIMESTAMP, 4, CURRENT_TIME)
INSERT INTO rel1 VALUES(5, CURRENT_TIMESTAMP(0), 6, CURRENT_TIME(0))
INSERT INTO rel1 VALUES(7, LOCALTIMESTAMP, 8, LOCALTIME)
INSERT INTO rel1 VALUES(9, LOCALTIMESTAMP(0), 10, LOCALTIME(0))
INSERT INTO rel1 VALUES(11, DEFAULT);
INSERT INTO rel1(c3) VALUES(1)
INSERT INTO rel1(c2, c1) VALUES('2000-1-1', 1)
INSERT INTO rel1(c2, c1) VALUES(DEFAULT, 2)
INSERT INTO rel1(c2, c1) VALUES(DEFAULT, 3), (DEFAULT, 4), ('2009-1-1', 5)
INSERT INTO rel1(c1, c2, c4) VALUES(1, '2009-1-1', '2009-2-2')
PREPARE q AS INSERT INTO rel1(c3) VALUES(1)
PREPARE q(int) AS INSERT INTO rel1(c3) VALUES($1)

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
prestogres-0.4.8 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.7 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.6 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.5 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.4 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.3 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.2 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.1 pgpool2/test/timestamp/input/insert.sql
prestogres-0.4.0 pgpool2/test/timestamp/input/insert.sql
prestogres-0.3.0 pgpool2/test/timestamp/input/insert.sql
prestogres-0.2.0 pgpool2/test/timestamp/input/insert.sql
prestogres-0.1.0 pgpool2/test/timestamp/input/insert.sql