Skip to content

Commit

Permalink
Add NUMERIC num_type (#2127)
Browse files Browse the repository at this point in the history
  • Loading branch information
auxsvr authored and mistercrunch committed Feb 7, 2017
1 parent 9cd38fa commit f2bf316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/models.py
Expand Up @@ -955,7 +955,7 @@ class TableColumn(Model, AuditMixinNullable, ImportMixin):
python_date_format = Column(String(255))
database_expression = Column(String(255))

num_types = ('DOUBLE', 'FLOAT', 'INT', 'BIGINT', 'LONG', 'REAL',)
num_types = ('DOUBLE', 'FLOAT', 'INT', 'BIGINT', 'LONG', 'REAL', 'NUMERIC')
date_types = ('DATE', 'TIME')
str_types = ('VARCHAR', 'STRING', 'CHAR')
export_fields = (
Expand Down

0 comments on commit f2bf316

Please sign in to comment.