@rex0220/kintone-sql-tools 3.53.0 → 3.54.1

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 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 0;
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);