levi0090 opened a new pull request, #4675:
URL: https://github.com/apache/zeppelin/pull/4675
### What is this PR for?
A few sentences describing the overall goals of the pull request's commits.
First time?
Fix 2 bugs occurs when zeppelin.livy.tableWithUTFCharacters is set to True.
ref. commit ID 0fc1d7ba2081ebeed5c45d87c27ca57727f54099
### What type of PR is it?
Bug Fix
### How should this be tested?
1. Enable **tableWithUTFCharacters** feature from livy interpreter.
2. Create non-select SQL statement, such as: CREATE table statement , you
will receive an error, however, the table will be created !
```
%livy.scala
spark.sql("CREATE TABLE test ( id int, name String, destination []String)")
```
3. INSERT a record with an array of values, will raise an exception as
arrays are non-primitive data
```
%livy.scala
spark.sql("INSERT INTO test VALUES ('6', 'test', '[\'1'\,\'2\']')")
```
### Screenshots (if appropriate)
N/A
### Questions:
* Does the license files need to update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
--
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]