mirror of https://github.com/apache/cassandra
Mark system_views/system_virtual_schema as system keyspaces in cqlsh
patch by Eduard Tudenhoefner; reviewed by Benjamin Lerer for CASSANDRA-15706 This is so that those keyspaces don't show up in tab completions. This also fixes the cqlsh completion tests.
This commit is contained in:
parent
01a091a041
commit
b3f27381a5
|
|
@ -34,7 +34,7 @@ class UnexpectedTableStructure(UserWarning):
|
|||
return 'Unexpected table structure; may not translate correctly to CQL. ' + self.msg
|
||||
|
||||
|
||||
SYSTEM_KEYSPACES = ('system', 'system_schema', 'system_traces', 'system_auth', 'system_distributed')
|
||||
SYSTEM_KEYSPACES = ('system', 'system_schema', 'system_traces', 'system_auth', 'system_distributed', 'system_views', 'system_virtual_schema')
|
||||
NONALTERBALE_KEYSPACES = ('system', 'system_schema')
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue