mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
Adding LONG to list of numeric types, updating TODO
This commit is contained in:
5
TODO.md
5
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
|
||||
|
||||
@@ -634,7 +634,7 @@ class SqlaTable(Model, Queryable, AuditMixinNullable):
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user