This is an automated email from the ASF dual-hosted git repository. samt pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git
commit d6e2ec54285b94b3fb5941ba21a24f8f8c684bf9 Author: Marcus Eriksson <[email protected]> AuthorDate: Tue May 2 10:08:34 2023 +0200 [CEP-21] add cluster_metadata ks --- cqlsh_tests/test_cqlsh.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cqlsh_tests/test_cqlsh.py b/cqlsh_tests/test_cqlsh.py index cc48644b..76d1f330 100644 --- a/cqlsh_tests/test_cqlsh.py +++ b/cqlsh_tests/test_cqlsh.py @@ -1042,7 +1042,8 @@ CREATE OR REPLACE AGGREGATE test.average(int) # Describe keyspaces expected_keyspaces = ['system_schema', 'system', 'system_traces', 'system_views', 'system_auth', 'system_distributed', 'system_virtual_schema'] - + if self.cluster.version() >= LooseVersion('5.1'): + expected_keyspaces.append('cluster_metadata') node1, = self.cluster.nodelist() output, err = self.run_cqlsh(node1, "DESCRIBE KEYSPACES") --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
