Skip to content

Commit

Permalink
Chore: update README optimizer example
Browse files Browse the repository at this point in the history
  • Loading branch information
georgesittas authored May 9, 2023
1 parent fa0f3a1 commit c580cb3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,10 @@ print(
```sql
SELECT
(
"x"."a" OR "x"."b" OR "x"."c"
) AND (
"x"."a" OR "x"."b" OR "x"."d"
"x"."a" <> 0 OR "x"."b" <> 0 OR "x"."c" <> 0
)
AND (
"x"."a" <> 0 OR "x"."b" <> 0 OR "x"."d" <> 0
) AS "_col_0"
FROM "x" AS "x"
WHERE
Expand Down

0 comments on commit c580cb3

Please sign in to comment.