This DDL for a column table results in CLOB for the id_ and name_ fields.
How can I get VARCHARs instead?
snappy> CREATE TABLE EXAMPLE_COLUMN_TABLE (
id_ VARCHAR(64),
name_ VARCHAR(128),
time_ TIMESTAMP,
number_ INTEGER
)
USING column
OPTIONS(PARTITION_BY 'time_', buckets '113', PERSISTENT 'ASYNCHRONOUS');