Commit f9c043f
committed
Add ANY/ALL subquery operator normalization
- Map anyMatch to in (for expr == any subquery)
- Map allMatch to notIn (for expr != all subquery)
These SQL standard comparison operators with subqueries are normalized
to ClickHouse's IN/NOT IN functions in EXPLAIN AST output.
Fixes 5 statements in 02007_test_any_all_operators test.1 parent 63368b8 commit f9c043f
File tree
2 files changed
+4
-6
lines changed- internal/explain
- parser/testdata/02007_test_any_all_operators
2 files changed
+4
-6
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
294 | 294 | | |
295 | 295 | | |
296 | 296 | | |
| 297 | + | |
| 298 | + | |
| 299 | + | |
297 | 300 | | |
298 | 301 | | |
299 | 302 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
| |||
11 | 10 | | |
12 | 11 | | |
13 | 12 | | |
14 | | - | |
15 | 13 | | |
16 | | - | |
17 | | - | |
18 | 14 | | |
19 | 15 | | |
20 | 16 | | |
21 | | - | |
22 | | - | |
| 17 | + | |
23 | 18 | | |
24 | 19 | | |
0 commit comments