You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2018/08/11 02:26:15 UTC

[GitHub] Wujiao233 opened a new issue #5604: TableViz raise Unexpected error when table include null value

Wujiao233 opened a new issue #5604: TableViz raise Unexpected error when table include null value
URL: https://github.com/apache/incubator-superset/issues/5604
 
 
   Make sure these boxes are checked before submitting your issue - thank you!
   
   - [x] I have checked the superset logs for python stacktraces and included it here as text if any
   - [x] I have reproduced the issue with at least the latest released version of superset
   - [x] I have checked the issue tracker for the same issue and I haven't found one similar
   
   when table include number type columns and the value is `null` , The TableViz cannot display this table when these columns be selected in `NOT GROUPED BY`
   
   ### Superset version
   0.26.3 On centos7  + Python 3.6.5
   
   ### Expected results
   
   ### Actual results
   Unexpected error.
   
   ### Steps to reproduce
   
   Table DDL:
   `
   CREATE TABLE testt (
     id int(11) NOT NULL AUTO_INCREMENT,
     name varchar(255) DEFAULT NULL,
     value int(255) DEFAULT NULL,
     PRIMARY KEY (`id`)
   ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
   `
   Data:
   
   |id|name|value|
   |-|-|-|
   |1|aaa|1|
   |2|bbb||
   |3|ccc|3|
   |4|ddd||
   
   And choose these three columns in TableViz's `NOT GROUPED BY` selector.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org