@malloydata/malloy-explorer 0.0.327-dev251220232354 → 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.
package/dist/esm/index.js CHANGED
@@ -34340,8 +34340,10 @@ function addGroupBy(view, field, path) {
34340
34340
  }
34341
34341
  if (type === "date_type") {
34342
34342
  segment.addDateGroupBy(field.name, path, "day");
34343
- } else if (type === "timestamp_type" || type === "timestamptz_type") {
34343
+ } else if (type === "timestamp_type") {
34344
34344
  segment.addTimestampGroupBy(field.name, path, "second");
34345
+ } else if (type === "timestamptz_type") {
34346
+ segment.addTimestamptzGroupBy(field.name, path, "second");
34345
34347
  } else {
34346
34348
  segment.addGroupBy(field.name, path, rename);
34347
34349
  recomputePartitionByAndPrimaryAxis(segment);