prabhjyotsingh opened a new pull request #4041: URL: https://github.com/apache/zeppelin/pull/4041
### What is this PR for? Livy Interpreter doesn't support Japanese Character - Encoding Issue ### What type of PR is it? [Bug Fix] ### What is the Jira issue? * https://issues.apache.org/jira/browse/ZEPPELIN-5231 ### How should this be tested? On a paragraph use below to generate data set: ``` %livy.scala spark.sql("CREATE TABLE test ( id int, name String, destination String)") spark.sql("INSERT INTO test VALUES ('1', 'みんく', 'みんく')") spark.sql("INSERT INTO test VALUES ('2', 'シュレヤン', 'シュレヤン')") spark.sql("INSERT INTO test VALUES ('3', 'サイ', 'サイ')") spark.sql("INSERT INTO test VALUES ('4', 'ツェッペリン', 'ツェッペリン')") spark.sql("INSERT INTO test VALUES ('5', 'テスト', 'テスト')") spark.sql("INSERT INTO test VALUES ('6', 'チャラン', 'チャラン')") spark.sql("select * from test").show() ``` Then in a separate paragraph use this to verify: ``` %livy.sql select * from test ``` You would notice that on toggling (true/false) between the newly introduced `tableWithUTFCharacter` the same 2nd paragraph works. ### Screenshots (if appropriate) N/A ### Questions: * Does the licenses files need update?N/A * Is there breaking changes for older versions?N/A * Does this needs documentation?N/A ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org