Arun M J created ZEPPELIN-2978:
----------------------------------
Summary: table does not render when columns contains whitespace
characters \n, \t
Key: ZEPPELIN-2978
URL: https://issues.apache.org/jira/browse/ZEPPELIN-2978
Project: Zeppelin
Issue Type: Bug
Components: GUI
Affects Versions: 0.7.3, 0.7.2, 0.7.1
Reporter: Arun M J
If we try to load a mysql table contains whitespace characters like \n,\t in
any of the columns, table does not render. But by inspecting websocket
communication, it seems that data is fetched successfully and reaches the
browser.
steps to reproduce.
==============
1. Create a mysql table:
CREATE TABLE `testdb`.`new_table` (
`id` INT NOT NULL,
`name` VARCHAR(45) NULL,
`address` LONGTEXT NULL,
PRIMARY KEY (`id`));
2. add sample data
INSERT INTO `testdb`.`new_table` (`id`, `name`, `address`) VALUES ('1', 'john
doe', 'foo\nbar');
3.
load table in zeppelin
select * from new_table
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)