You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@superset.apache.org by gi...@git.apache.org on 2017/09/08 16:37:42 UTC

[GitHub] datinho commented on issue #2382: impala can't render element of type

datinho commented on issue #2382: impala can't render element of type <class 'impala.sqlalchemy.INT'>
URL: https://github.com/apache/incubator-superset/issues/2382#issuecomment-328153520
 
 
   Into superset/connectors/sqla/models.py there is the def 'fetch_metadata' (line 577) the datatype throw Exception here
   `        for col in table.columns:
                try:
                    datatype = "{}".format(col.type).upper()
                except Exception as e:
                    datatype = "UNKNOWN"
                    logging.error(
                        "Unrecognized data type in {}.{}".format(table, col.name))
                    logging.exception(e)
   `
   Maybe the format didn't consider impala/impyla dialect.
 
----------------------------------------------------------------
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