-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #483: no space in any() or all()
- Loading branch information
Showing
5 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
-- source: https://github.com/tconbeer/sqlfmt/issues/483 | ||
select any(number) as any_number from (select number from system.numbers limit 10); | ||
select max(number) as max_number, min(number) as min_number, any(number) as any_number, avg(number) as avg_number from (select number from system.numbers limit 10); | ||
select foo from bar where foo like all (baz) or foo like any (qux); | ||
)))))__SQLFMT_OUTPUT__((((( | ||
-- source: https://github.com/tconbeer/sqlfmt/issues/483 | ||
select any(number) as any_number | ||
from (select number from system.numbers limit 10) | ||
; | ||
select | ||
max(number) as max_number, | ||
min(number) as min_number, | ||
any(number) as any_number, | ||
avg(number) as avg_number | ||
from (select number from system.numbers limit 10) | ||
; | ||
select foo | ||
from bar | ||
where foo like all (baz) or foo like any (qux) | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters