You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pr@cassandra.apache.org by "clohfink (via GitHub)" <gi...@apache.org> on 2023/02/03 22:46:11 UTC

[GitHub] [cassandra] clohfink commented on a diff in pull request #2141: FILTERING ON|OFF in cqlsh

clohfink commented on code in PR #2141:
URL: https://github.com/apache/cassandra/pull/2141#discussion_r1096348914


##########
pylib/cqlshlib/cqlshmain.py:
##########
@@ -967,7 +968,10 @@ def perform_simple_statement(self, statement):
         if not statement:
             return False, None
 
-        future = self.session.execute_async(statement, trace=self.tracing_enabled)
+        query_to_execute = statement.query_string
+        if self.filtering_enabled:
+            query_to_execute = statement.query_string[:-1] + " ALLOW FILTERING;"

Review Comment:
   would this be added to like ALTER and DESCRIBE commands?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: pr-unsubscribe@cassandra.apache.org
For additional commands, e-mail: pr-help@cassandra.apache.org