Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt committed May 20, 2024
1 parent f91c945 commit ec8ef11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/checks/runChecks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function sqlEval(sqlFragment: any, run: any): Promise<boolean> {

// run the sql fragment and see if it returns any rows
sqlFragment.isTempRun = true
const [result] = await tx`select * from temp_run where ${sqlFragment}`
const [result] = await tx`select * from temp_run r where ${sqlFragment}`
passed = !!result
})
return passed
Expand Down

0 comments on commit ec8ef11

Please sign in to comment.