Skip to content

Commit

Permalink
fix queue query
Browse files Browse the repository at this point in the history
  • Loading branch information
abelanger5 committed Aug 8, 2024
1 parent 89769ab commit d4247b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/repository/prisma/dbsqlc/batch.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/repository/prisma/dbsqlc/queue.sql
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ WHERE
AND qi."queue" = @queue::text
AND (
sqlc.narg('gtId')::bigint IS NULL OR
qi."id" > sqlc.narg('gtId')::bigint
qi."id" >= sqlc.narg('gtId')::bigint
)
ORDER BY
qi."id" ASC
Expand Down

0 comments on commit d4247b2

Please sign in to comment.