Pari Lingampally created ZEPPELIN-3599: ------------------------------------------
Summary: z.show() function does not render certain strings correctly Key: ZEPPELIN-3599 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3599 Project: Zeppelin Issue Type: Bug Components: front-end, Interpreters Affects Versions: 0.8.0 Reporter: Pari Lingampally Attachments: image-2018-07-09-14-38-54-324.png It seems that certain strings are not rendered properly by the z.show() function. Simple test case to recreate the issue. {code:java} %spark.pyspark columns = ['id', 'value', 'hash'] vals = [ (1, 2, '0xf24543ee178d7147c63d4e8de015bf92792df6f19a71'), (2, 0, 'test') ] df = sqlContext.createDataFrame(vals, columns) df.printSchema() root |-- id: long (nullable = true) |-- value: long (nullable = true) |-- hash: string (nullable = true) {code} And then the show function: {code:java} %spark.pyspark z.show(df) {code} Outputs: !image-2018-07-09-14-38-54-324.png! -- This message was sent by Atlassian JIRA (v7.6.3#76005)