diff --git a/TODO.md b/TODO.md index d0d6a328ab83c..e753f4a5e174c 100644 --- a/TODO.md +++ b/TODO.md @@ -1,9 +1,6 @@ # TODO List of TODO items for Dashed -range filter formatter -sankey example is missing - ## Important * **Getting proper JS testing:** unit tests on the Python side are pretty solid, but now we need a test suite for the JS part of the site, @@ -39,6 +36,8 @@ sankey example is missing ## Easy-ish fix +* Build matrix to include mysql using tox +* Figure out why coverage isn't working * Kill switch for Druid in docs * CREATE VIEW button from SQL editor * Test button for when editing SQL expression diff --git a/dashed/models.py b/dashed/models.py index 7c06bd9bdd08c..4142d8edc8216 100644 --- a/dashed/models.py +++ b/dashed/models.py @@ -634,7 +634,7 @@ def fetch_metadata(self): db.session.flush() if not dbcol: dbcol = TableColumn(column_name=col.name) - num_types = ('DOUBLE', 'FLOAT', 'INT', 'BIGINT') + num_types = ('DOUBLE', 'FLOAT', 'INT', 'BIGINT', 'LONG') datatype = str(datatype).upper() if ( str(datatype).startswith('VARCHAR') or