mirror of https://github.com/apache/cassandra
cqlsh: Add min_threshold to DTCS autocomplete options
Patch by Alex Buck; reviewed by Tyler Hobbs for CASSANDRA-9385
This commit is contained in:
parent
54e58d8c52
commit
5aaa5cad6e
|
|
@ -1,4 +1,5 @@
|
|||
2.0.17
|
||||
* (cqlsh) Add min_threshold to DTCS option autocomplete (CASSANDRA-9385)
|
||||
* Fix error message when attempting to create an index on a column
|
||||
in a COMPACT STORAGE table with clustering columns (CASSANDRA-9527)
|
||||
* 'WITH WITH' in alter keyspace statements causes NPE (CASSANDRA-9565)
|
||||
|
|
|
|||
|
|
@ -482,6 +482,7 @@ def cf_prop_val_mapkey_completer(ctxt, cass):
|
|||
opts.add('base_time_seconds')
|
||||
opts.add('max_sstable_age_days')
|
||||
opts.add('timestamp_resolution')
|
||||
opts.add('min_threshold')
|
||||
return map(escape_value, opts)
|
||||
return ()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue