adelapena commented on code in PR #2673:
URL: https://github.com/apache/cassandra/pull/2673#discussion_r1350162595


##########
src/java/org/apache/cassandra/cql3/statements/SelectStatement.java:
##########
@@ -109,6 +112,9 @@ public class SelectStatement implements 
CQLStatement.SingleKeyspaceCqlStatement
     private static final NoSpamLogger noSpamLogger = 
NoSpamLogger.getLogger(SelectStatement.logger, 1, TimeUnit.MINUTES);
 
     public static final int DEFAULT_PAGE_SIZE = 10000;
+    public static final String TOPK_CONSISTENCY_LEVEL_ERROR = "Top-k queries 
can only be run with consistency level one. Consistency level %s was used.";

Review Comment:
   ```suggestion
       public static final String TOPK_CONSISTENCY_LEVEL_ERROR = "Top-k queries 
can only be run with consistency level ONE/LOCAL_ONE. Consistency level %s was 
used.";
   ```



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to