@rex0220/kintone-sql-tools 3.53.0 → 3.54.0
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-cli/ksql.js +1 -1
- package/dist-engine/index.cjs +2 -2
- package/dist-engine/index.mjs +2 -2
- package/dist-engine/ksql-engine.umd.js +2 -2
- package/dist-engine/meta/bundle-baseline.json +4 -4
- package/dist-engine/meta/cjs.json +1 -1
- package/dist-engine/meta/esm.json +1 -1
- package/dist-engine/meta/umd.json +1 -1
- package/dist-mcp/ksql-mcp.js +3 -3
- package/dist-mcpb/ksql-mcp.mcpb +0 -0
- package/package.json +1 -1
package/dist-cli/ksql.js
CHANGED
|
@@ -13596,7 +13596,7 @@ function evalAggregate(func, distinct, arg, separator, rows, resolveAggSortKind)
|
|
|
13596
13596
|
}
|
|
13597
13597
|
if (func === "MIN" || func === "MAX") {
|
|
13598
13598
|
const comparableValues = eff;
|
|
13599
|
-
if (comparableValues.length === 0) return
|
|
13599
|
+
if (comparableValues.length === 0) return "";
|
|
13600
13600
|
let result = comparableValues[0];
|
|
13601
13601
|
for (const candidate of comparableValues.slice(1)) {
|
|
13602
13602
|
const cmp = compareCanonicalValues(candidate, result, semantics);
|