update .gitignore

merge-cstore-pykello
Hadi Moshayedi 2020-09-02 14:27:24 -07:00
parent 3089c92103
commit 406bebe4b8
2 changed files with 32 additions and 0 deletions

4
.gitignore vendored
View File

@ -53,5 +53,9 @@
/expected/create.out
/expected/data_types.out
/expected/load.out
/results/*
/.deps/*
/regression.diffs
/regression.out
*.pb-c.*

View File

@ -58,3 +58,31 @@ CREATE EVENT TRIGGER cstore_drop_event
ON SQL_DROP
EXECUTE PROCEDURE cstore_drop_trigger();
CREATE TABLE cstore_table_metadata(
relid oid,
version_major int,
version_minor int
);
CREATE TABLE cstore_stripe(
relid oid,
stripe bigint
);
CREATE TABLE cstore_column_block_skip_node(
relid oid,
stripe bigint,
attr int,
blockid int,
rowcount bigint,
min_value text,
max_value text,
value_offset bigint,
value_length bigint,
value_compression_type char,
exists_offset bigint,
exists_length bigint);
CREATE INDEX cstore_column_block_skip_node_idx
ON cstore_column_block_skip_node
USING BTREE(relid, stripe, attr, blockid);