zjffdu commented on code in PR #4769:
URL: https://github.com/apache/zeppelin/pull/4769#discussion_r1689131085
##########
livy/src/main/java/org/apache/zeppelin/livy/LivySparkSQLInterpreter.java:
##########
@@ -359,25 +359,7 @@ private static void escapeJavaStyleString(Writer out,
String str) throws IOExcep
break;
}
} else {
- switch (ch) {
- case '\'' :
- out.write('\\');
- break;
- case '"' :
- out.write('\\');
- out.write('"');
- break;
- case '\\' :
- out.write('\\');
- out.write('\\');
- break;
- case '/' :
- out.write('\\');
- break;
Review Comment:
This is due to this ticket.
https://issues.apache.org/jira/browse/ZEPPELIN-5458
@myongyun Could you help check whether Chinese character can be displayed
correctly after your PR? Thanks
--
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]