Repository: cassandra
Updated Branches:
  refs/heads/cassandra-2.2 a9a848318 -> 239927d32


cqlsh: Add min_threshold to DTCS autocomplete options

Patch by Alex Buck; reviewed by Tyler Hobbs for CASSANDRA-9385


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/5aaa5cad
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/5aaa5cad
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/5aaa5cad

Branch: refs/heads/cassandra-2.2
Commit: 5aaa5cad6eed26f6a20ef586e615192bfeca9cc1
Parents: 54e58d8
Author: Alex Buck <alex.buc...@gmail.com>
Authored: Fri Jun 26 13:29:51 2015 -0500
Committer: Tyler Hobbs <tylerlho...@gmail.com>
Committed: Fri Jun 26 13:29:51 2015 -0500

----------------------------------------------------------------------
 CHANGES.txt                    | 1 +
 pylib/cqlshlib/cql3handling.py | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra/blob/5aaa5cad/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 80b4a8d..68a9bf4 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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)

http://git-wip-us.apache.org/repos/asf/cassandra/blob/5aaa5cad/pylib/cqlshlib/cql3handling.py
----------------------------------------------------------------------
diff --git a/pylib/cqlshlib/cql3handling.py b/pylib/cqlshlib/cql3handling.py
index 9e9b6ad..8b0cda9 100644
--- a/pylib/cqlshlib/cql3handling.py
+++ b/pylib/cqlshlib/cql3handling.py
@@ -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 ()
 

Reply via email to