mirror of https://github.com/citusdata/citus.git
19 lines
553 B
Plaintext
19 lines
553 B
Plaintext
--
|
|
-- Test utility functions for cstore_fdw tables.
|
|
--
|
|
CREATE FOREIGN TABLE empty_table (a int) SERVER cstore_server;
|
|
CREATE FOREIGN TABLE table_with_data (a int) SERVER cstore_server;
|
|
CREATE TABLE non_cstore_table (a int);
|
|
COPY table_with_data FROM STDIN;
|
|
SELECT cstore_table_size('empty_table') < cstore_table_size('table_with_data');
|
|
?column?
|
|
----------
|
|
t
|
|
(1 row)
|
|
|
|
SELECT cstore_table_size('non_cstore_table');
|
|
ERROR: relation is not a cstore table
|
|
DROP FOREIGN TABLE empty_table;
|
|
DROP FOREIGN TABLE table_with_data;
|
|
DROP TABLE non_cstore_table;
|