mirror of
https://github.com/apache/druid.git
synced 2025-03-01 14:59:08 +00:00
3 lines
244 B
SQL
3 lines
244 B
SQL
CREATE TABLE index_storage ( key text, chunk text, value blob, PRIMARY KEY (key, chunk)) WITH COMPACT STORAGE;
|
|
CREATE TABLE descriptor_storage ( key varchar, lastModified timestamp, descriptor varchar, PRIMARY KEY (key) ) WITH COMPACT STORAGE;
|