Commit 311c478
authored
fix: keep spaces around - operator in dialects with dashed identifiers (#953)
With `denseOperators: true` on BigQuery, a subtraction like `a - b`
comes out as `a-b`. That's not just ugly: BigQuery allows dashes inside
identifiers, so the densed output re-parses as a single identifier
`a-b`, and `format(format(sql))` no longer matches `format(sql)`. `a -
foo(y)` is worse — it becomes `a-foo (y)`, turning the expression into
an identifier followed by a call.
The fix is to leave the `-` operator spaced in dialects that allow
dashed identifiers (currently just BigQuery). I derived that flag from
the existing `identChars.dashes` tokenizer option so there's a single
source of truth. Numeric cases like `1 - 2` were already safe (the `-`
is parsed into the literal), so this only affects the identifier case.
The shared dense-operator test in `operators.ts` was actually asserting
the broken `foo-bar` output for BigQuery; I scoped that to the
dashed-identifier dialects and added a BigQuery regression test.
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->
## Summary by CodeRabbit
## Release Notes
* **Bug Fixes**
* Fixed formatting of the `-` operator in dialects that support dashes
in identifiers, such as BigQuery. When dense operator formatting is
enabled, spaces around the `-` operator are now properly preserved to
prevent expressions from being incorrectly merged into dashed
identifiers.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->4 files changed
Lines changed: 43 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
41 | | - | |
42 | | - | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
43 | 44 | | |
44 | 45 | | |
45 | 46 | | |
46 | 47 | | |
47 | 48 | | |
| 49 | + | |
48 | 50 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
63 | 67 | | |
64 | 68 | | |
65 | 69 | | |
| |||
330 | 334 | | |
331 | 335 | | |
332 | 336 | | |
333 | | - | |
| 337 | + | |
| 338 | + | |
| 339 | + | |
| 340 | + | |
| 341 | + | |
| 342 | + | |
334 | 343 | | |
335 | 344 | | |
336 | 345 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
61 | | - | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
62 | 65 | | |
63 | 66 | | |
64 | 67 | | |
| |||
80 | 83 | | |
81 | 84 | | |
82 | 85 | | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
83 | 99 | | |
84 | 100 | | |
85 | 101 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
8 | 11 | | |
9 | 12 | | |
10 | 13 | | |
| |||
27 | 30 | | |
28 | 31 | | |
29 | 32 | | |
30 | | - | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
31 | 40 | | |
32 | 41 | | |
33 | 42 | | |
| |||
0 commit comments