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:
Stefan Miklosovic 2022-10-21 16:01:36 +02:00
parent 9074ee7ef8
commit c71f04bd5b
3 changed files with 5 additions and 0 deletions

View File

@ -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)

View File

@ -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),

View File

@ -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',