@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.
- package/dist/cjs/index.cjs +3 -1
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/malloy-explorer.css +12 -0
- package/package.json +8 -8
package/dist/cjs/index.cjs
CHANGED
|
@@ -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"
|
|
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);
|