dcapwell commented on code in PR #4044:
URL: https://github.com/apache/cassandra/pull/4044#discussion_r2027944426


##########
test/harry/main/org/apache/cassandra/harry/util/StringUtils.java:
##########
@@ -35,7 +35,7 @@ public static String escapeControlChars(String input)
         for (int i = 0; i < input.length(); i++)
         {
             char c = input.charAt(i);
-            if (Character.isISOControl(c))
+            if (Character.isISOControl(c) && c != '\n')

Review Comment:
   you don't see it in this patch but in `BEGIN BATCH` the statements are multi 
line, which got escaped in the logs



-- 
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-unsubscr...@cassandra.apache.org

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


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

Reply via email to