fix: Revert "fix: Apply normalization to all dttm columns (#25147)" (#25801)

This commit is contained in:
John Bodley
2023-10-31 06:21:47 -07:00
committed by Michael S. Molina
parent 1d403dab98
commit c216b3efdf
6 changed files with 11 additions and 162 deletions

View File

@@ -285,11 +285,10 @@ class QueryContextProcessor:
datasource = self._qc_datasource
labels = tuple(
label
for label in {
for label in [
*get_base_axis_labels(query_object.columns),
*[col for col in query_object.columns or [] if isinstance(col, str)],
query_object.granularity,
}
]
if datasource
# Query datasource didn't support `get_column`
and hasattr(datasource, "get_column")