Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Jan 17, 2025
1 parent 6f49d6e commit 2075c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions grafast/dataplan-pg/src/steps/pgSelect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,7 @@ and ${sql.indent(sql.parens(condition(i + 1)))}`}
async execute(
executionDetails: ExecutionDetails,
): Promise<GrafastResultsList<ReadonlyArray<unknown[]>>> {
const { first, last, offset } = this.getExecutionCommon(executionDetails);
const { first, last } = this.getExecutionCommon(executionDetails);
const {
indexMap,
count,
Expand Down Expand Up @@ -1305,7 +1305,7 @@ and ${sql.indent(sql.parens(condition(i + 1)))}`}
values,
extra: { eventEmitter },
} = executionDetails;
const { first, last, offset } = this.getExecutionCommon(executionDetails);
const { first, last } = this.getExecutionCommon(executionDetails);
if (first === 0 || last === 0) {
return arrayOfLength(count, Object.freeze([]));
}
Expand Down

0 comments on commit 2075c0a

Please sign in to comment.