Skip to content

Commit

Permalink
reorder testcases
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonadern committed Aug 22, 2024
1 parent 70e28d2 commit a88a554
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions crates/uroborosql-fmt/testfiles/dst/select/unary.sql
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ select
select
~5 as bitwise_not
select
@-5 as absolute_value
|/25 as square_root
select
@-5 as absolute_value
select
|/25 as square_root
@-5 as absolute_value
select
|/25 as square_root
select
Expand Down
6 changes: 3 additions & 3 deletions crates/uroborosql-fmt/testfiles/src/select/unary.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ select not true as not_true
select ~5 as bitwise_not
select ~ 5 as bitwise_not

select |/25 as square_root
select @-5 as absolute_value
select @ -5 as absolute_value

select |/25 as square_root
select @ -5 as absolute_value
select |/ 25 as square_root

select ||/8 as cube_root
select ||/ 8 as cube_root
select ||/ 8 as cube_root

0 comments on commit a88a554

Please sign in to comment.