Sha256: ed5309a8f96e9298fb5fd34618e259c3667920c3becca7722e8db87b9eb3372b

Contents?: true

Size: 523 Bytes

Versions: 12

Compression:

Stored size: 523 Bytes

Contents

COPY t FROM 'xxx';
COPY t FROM stdin;
COPY t(x,y) FROM 'xxx';
COPY t FROM 'xxx' BINARY;
COPY t FROM 'xxx' CSV HEADER QUOTE AS '#' ESCAPE AS '$' FORCE NOT NULL foo,bar;
COPY t FROM 'xxx' OIDS;
COPY t FROM 'xxx' DELIMITER ',';
COPY t FROM 'xxx' NULL 'x';
COPY t TO 'yyy';
COPY t TO stdout;
COPY t(x,y) TO 'yyy';
COPY t TO 'yyy' BINARY;
COPY t FROM 'xxx' CSV HEADER QUOTE AS '#' ESCAPE AS '$' FORCE QUOTE foo,bar;
COPY t TO 'yyy' OIDS;
COPY t TO 'yyy' DELIMITER ',';
COPY t TO 'yyy' NULL 'x';
COPY (SELECT * FROM t) TO 'xxx';

Version data entries

12 entries across 12 versions & 1 rubygems

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