move columnar test files

pull/4311/head
Nils Dijk 2020-11-05 14:46:45 +01:00
parent 30fbd877e7
commit f89bd3eeb5
No known key found for this signature in database
GPG Key ID: CA1177EF9434F241
84 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
--
-- Test the CREATE statements related to cstore.
--
-- Create uncompressed table
CREATE TABLE contestant (handle TEXT, birthdate DATE, rating INT,
percentile FLOAT, country CHAR(3), achievements TEXT[])
USING cstore_tableam;
-- Create compressed table with automatically determined file path
-- COMPRESSED
CREATE TABLE contestant_compressed (handle TEXT, birthdate DATE, rating INT,
percentile FLOAT, country CHAR(3), achievements TEXT[])
USING cstore_tableam;
-- Test that querying an empty table works
ANALYZE contestant;
SELECT count(*) FROM contestant;
count
-------
0
(1 row)