cqlsh: Add min_threshold to DTCS autocomplete options

Patch by Alex Buck; reviewed by Tyler Hobbs for CASSANDRA-9385
This commit is contained in:
Alex Buck 2015-06-26 13:29:51 -05:00 committed by Tyler Hobbs
parent 54e58d8c52
commit 5aaa5cad6e
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
2.0.17 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 * Fix error message when attempting to create an index on a column
in a COMPACT STORAGE table with clustering columns (CASSANDRA-9527) in a COMPACT STORAGE table with clustering columns (CASSANDRA-9527)
* 'WITH WITH' in alter keyspace statements causes NPE (CASSANDRA-9565) * 'WITH WITH' in alter keyspace statements causes NPE (CASSANDRA-9565)

View File

@ -482,6 +482,7 @@ def cf_prop_val_mapkey_completer(ctxt, cass):
opts.add('base_time_seconds') opts.add('base_time_seconds')
opts.add('max_sstable_age_days') opts.add('max_sstable_age_days')
opts.add('timestamp_resolution') opts.add('timestamp_resolution')
opts.add('min_threshold')
return map(escape_value, opts) return map(escape_value, opts)
return () return ()