Skip to content

Commit

Permalink
fix complex join example some more
Browse files Browse the repository at this point in the history
  • Loading branch information
koskimas committed Mar 22, 2024
1 parent 9f836c4 commit 8f9038f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/query-builder/select-query-builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -615,8 +615,8 @@ export interface SelectQueryBuilder<DB, TB extends keyof DB, O>
* on "pet"."owner_id" = "person"."id"
* and "pet"."name" = $1
* and (
* "person"."age" > $2 OR
* "person"."age" < $3
* "person"."age" > $2
* OR "person"."age" < $3
* )
* ```
*
Expand Down

0 comments on commit 8f9038f

Please sign in to comment.