cassandra-client
cassandra-client copied to clipboard
Table DDL fails properly process frozen param
Existing DDL view splits lines by ',' that is a problem for parametric frozen spec.
CREATE TABLE system_schema.tables (
keyspace_name text,
table_name text,
bloom_filter_fp_chance double,
caching frozen<map<text,
text>>,
cdc boolean,
comment text,
compaction frozen<map<text,
text>>,
compression frozen<map<text,
text>>,
crc_check_chance double,
dclocal_read_repair_chance double,
default_time_to_live int,
extensions frozen<map<text,
blob>>,
flags frozen<set<text>>,
gc_grace_seconds int,
id uuid,
max_index_interval int,
memtable_flush_period_in_ms int,
min_index_interval int,
read_repair_chance double,
speculative_retry text,
PRIMARY KEY (keyspace_name, table_name)
)