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:
Eduard Tudenhoefner 2020-04-08 11:43:39 +02:00 committed by Benjamin Lerer
parent 01a091a041
commit b3f27381a5
1 changed files with 1 additions and 1 deletions

View File

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