mirror of
https://github.com/apache/druid.git
synced 2025-02-11 20:45:01 +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;
|