@malloydata/malloy-explorer 0.0.305-dev251220225448 → 0.0.329-dev251223220534

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34357,8 +34357,10 @@ function addGroupBy(view, field, path) {
34357
34357
  }
34358
34358
  if (type === "date_type") {
34359
34359
  segment.addDateGroupBy(field.name, path, "day");
34360
- } else if (type === "timestamp_type" || type === "timestamptz_type") {
34360
+ } else if (type === "timestamp_type") {
34361
34361
  segment.addTimestampGroupBy(field.name, path, "second");
34362
+ } else if (type === "timestamptz_type") {
34363
+ segment.addTimestamptzGroupBy(field.name, path, "second");
34362
34364
  } else {
34363
34365
  segment.addGroupBy(field.name, path, rename);
34364
34366
  recomputePartitionByAndPrimaryAxis(segment);