Skip to content

Commit

Permalink
===
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Jan 13, 2025
1 parent f51702f commit 93e594d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grafast/dataplan-pg/src/steps/pgSelect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1858,7 +1858,7 @@ and ${sql.indent(sql.parens(condition(i + 1)))}`}

const { symbol, dependencyIndex, codec, alreadyEncoded } = placeholder;
const ev = values[dependencyIndex];
if (!ev.isBatch || count == 1) {
if (!ev.isBatch || count === 1) {
const value = ev.at(0);
placeholderValues.set(
symbol,
Expand Down
2 changes: 1 addition & 1 deletion grafast/dataplan-pg/src/steps/pgUnionAll.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1836,7 +1836,7 @@ ${unionHaving}\
const { symbol, dependencyIndex, codec, alreadyEncoded } =
placeholder;
const ev = values[dependencyIndex];
if (!ev.isBatch || count == 1) {
if (!ev.isBatch || count === 1) {
const value = ev.at(0);
placeholderValues.set(
symbol,
Expand Down

0 comments on commit 93e594d

Please sign in to comment.