mirror of https://github.com/citusdata/citus.git
18 lines
535 B
SQL
18 lines
535 B
SQL
--
|
|
-- Test copying data from cstore_fdw tables.
|
|
--
|
|
CREATE TABLE test_contestant(handle TEXT, birthdate DATE, rating INT,
|
|
percentile FLOAT, country CHAR(3), achievements TEXT[])
|
|
USING cstore_tableam;
|
|
|
|
-- load table data from file
|
|
COPY test_contestant FROM '/Users/jefdavi/wd/cstore2/data/contestants.1.csv' WITH CSV;
|
|
|
|
-- export using COPY table TO ...
|
|
COPY test_contestant TO STDOUT;
|
|
|
|
-- export using COPY (SELECT * FROM table) TO ...
|
|
COPY (select * from test_contestant) TO STDOUT;
|
|
|
|
DROP TABLE test_contestant CASCADE;
|