Skip to content

Commit

Permalink
Add failing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
vegarsti committed May 5, 2023
1 parent 6124d0c commit 4eb737d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/dialects/test_postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,13 @@ def test_postgres(self):
"postgres": "x ^ y",
},
)
self.validate_all(
"x / y ^ z",
write={
"": "x / POWER(y, z)",
"postgres": "x / y ^ z",
},
)
self.validate_all(
"x # y",
write={
Expand Down

0 comments on commit 4eb737d

Please sign in to comment.