All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ddl.media.tables.template.cql Maven / Gradle / Ivy

There is a newer version: 6.5.171
Show newest version
USE ${keyspace};

CREATE TABLE ${table} (
    blobid blob,
    group ascii,
    chunkid int,
    data blob,
    PRIMARY KEY (blobid, group, chunkid)
) WITH COMPACT STORAGE
  AND compression = {'sstable_compression' : 'LZ4Compressor'};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy