Skip to content

Commit

Permalink
fix: revert "feat(sqla): apply time grain to all temporal groupbys" (#…
Browse files Browse the repository at this point in the history
…17239)

* Revert "feat(sqla): apply time grain to all temporal groupbys (#16318)"

This reverts commit 9075e42.

* Update models.py
  • Loading branch information
john-bodley committed Oct 29, 2021
1 parent 456efc0 commit b7bda70
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions superset/connectors/sqla/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1092,16 +1092,16 @@ def get_sqla_query( # pylint: disable=too-many-arguments,too-many-locals,too-ma
columns = groupby or columns
for selected in columns:
# if groupby field/expr equals granularity field/expr
table_col = columns_by_name.get(selected)
if table_col and table_col.type_generic == GenericDataType.TEMPORAL:
outer = table_col.get_timestamp_expression(
if selected == granularity:
sqla_col = columns_by_name[selected]
outer = sqla_col.get_timestamp_expression(
time_grain=time_grain,
label=selected,
template_processor=template_processor,
)
# if groupby field equals a selected column
elif table_col:
outer = table_col.get_sqla_col()
elif selected in columns_by_name:
outer = columns_by_name[selected].get_sqla_col()
else:
outer = literal_column(f"({selected})")
outer = self.make_sqla_column_compatible(outer, selected)
Expand Down

0 comments on commit b7bda70

Please sign in to comment.