Skip to content

Commit

Permalink
models: add real to numeric types (#2044)
Browse files Browse the repository at this point in the history
Fix #2010
  • Loading branch information
xrmx authored and bkyryliuk committed Jan 25, 2017
1 parent 5715f52 commit bfa2891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ class TableColumn(Model, AuditMixinNullable, ImportMixin):
python_date_format = Column(String(255))
database_expression = Column(String(255))

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

0 comments on commit bfa2891

Please sign in to comment.