Skip to content

Commit

Permalink
fix(migrations): sl_columns is_temporal mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
cemremengu committed Apr 20, 2022
1 parent 22a92ed commit dadcf91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def copy_columns(session: Session) -> None:
),
sa.literal(False).label("is_aggregation"),
is_physical_column.label("is_physical"),
TableColumn.is_dttm.label("is_temporal"),
func.coalesce(TableColumn.is_dttm, False).label("is_temporal"),
func.coalesce(TableColumn.type, UNKNOWN_TYPE).label("type"),
TableColumn.extra.label("extra_json"),
]
Expand Down

0 comments on commit dadcf91

Please sign in to comment.