mirror of https://github.com/apache/cassandra
Add memtable option among possible tab completions for a table
patch by Stefan Miklosovic; reviewed by Brandon Williams for CASSANDRA-17982
This commit is contained in:
parent
9074ee7ef8
commit
c71f04bd5b
|
|
@ -1,4 +1,5 @@
|
|||
4.2
|
||||
* Add memtable option among possible tab completions for a table (CASSANDRA-17982)
|
||||
* Adds a trie-based memtable implementation (CASSANDRA-17240)
|
||||
* Further improves precision of memtable heap tracking (CASSANDRA-17240)
|
||||
* Fix formatting of metrics documentation (CASSANDRA-17961)
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ class Cql3ParsingRuleSet(CqlParsingRuleSet):
|
|||
('default_time_to_live', None),
|
||||
('speculative_retry', None),
|
||||
('additional_write_policy', None),
|
||||
('memtable', None),
|
||||
('memtable_flush_period_in_ms', None),
|
||||
('cdc', None),
|
||||
('read_repair', None),
|
||||
|
|
|
|||
|
|
@ -621,6 +621,7 @@ class TestCqlshCompletion(CqlshCompletionCase):
|
|||
'compression',
|
||||
'default_time_to_live', 'gc_grace_seconds',
|
||||
'max_index_interval',
|
||||
'memtable',
|
||||
'memtable_flush_period_in_ms',
|
||||
'CLUSTERING',
|
||||
'COMPACT', 'caching', 'comment',
|
||||
|
|
@ -631,6 +632,7 @@ class TestCqlshCompletion(CqlshCompletionCase):
|
|||
'compression',
|
||||
'default_time_to_live', 'gc_grace_seconds',
|
||||
'max_index_interval',
|
||||
'memtable',
|
||||
'memtable_flush_period_in_ms',
|
||||
'CLUSTERING',
|
||||
'COMPACT', 'caching', 'comment',
|
||||
|
|
@ -679,6 +681,7 @@ class TestCqlshCompletion(CqlshCompletionCase):
|
|||
'compression',
|
||||
'default_time_to_live', 'gc_grace_seconds',
|
||||
'max_index_interval',
|
||||
'memtable',
|
||||
'memtable_flush_period_in_ms',
|
||||
'CLUSTERING',
|
||||
'COMPACT', 'caching', 'comment',
|
||||
|
|
|
|||
Loading…
Reference in New Issue