1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
|
#include "sql.h"
#include "node.h"
#include "context.h"
#include <yql/essentials/utils/yql_panic.h>
#include <library/cpp/charset/ci_string.h>
using namespace NYql;
namespace NSQLTranslationV0 {
class TSubqueryNode: public INode {
public:
TSubqueryNode(TSourcePtr&& source, const TString& alias, bool inSubquery, int ensureTupleSize)
: INode(source->GetPos())
, Source(std::move(source))
, Alias(alias)
, InSubquery(inSubquery)
, EnsureTupleSize(ensureTupleSize)
{
YQL_ENSURE(!Alias.empty());
}
ISource* GetSource() override {
return Source.Get();
}
bool DoInit(TContext& ctx, ISource* src) override {
YQL_ENSURE(!src, "Source not expected for subquery node");
Source->UseAsInner();
if (!Source->Init(ctx, nullptr)) {
return false;
}
TTableList tableList;
Source->GetInputTables(tableList);
auto tables = BuildInputTables(Pos, tableList, InSubquery);
if (!tables->Init(ctx, Source.Get())) {
return false;
}
auto source = Source->Build(ctx);
if (!source) {
return false;
}
if (EnsureTupleSize != -1) {
source = Y("EnsureTupleSize", source, Q(ToString(EnsureTupleSize)));
}
Node = Y("let", Alias, Y("block", Q(L(tables, Y("return", Q(Y("world", source)))))));
IsUsed = true;
return true;
}
void DoUpdateState() const override {
State.Set(ENodeState::Const, true);
}
bool UsedSubquery() const override {
return IsUsed;
}
TAstNode* Translate(TContext& ctx) const override {
Y_DEBUG_ABORT_UNLESS(Node);
return Node->Translate(ctx);
}
const TString* SubqueryAlias() const override {
return &Alias;
}
TPtr DoClone() const final {
return {};
}
protected:
TSourcePtr Source;
TNodePtr Node;
const TString Alias;
const bool InSubquery;
const int EnsureTupleSize;
bool IsUsed = false;
};
TNodePtr BuildSubquery(TSourcePtr source, const TString& alias, bool inSubquery, int ensureTupleSize) {
return new TSubqueryNode(std::move(source), alias, inSubquery, ensureTupleSize);
}
class TSourceNode: public INode {
public:
TSourceNode(TPosition pos, TSourcePtr&& source, bool checkExist)
: INode(pos)
, Source(std::move(source))
, CheckExist(checkExist)
{}
ISource* GetSource() override {
return Source.Get();
}
bool DoInit(TContext& ctx, ISource* src) override {
if (AsInner) {
Source->UseAsInner();
}
if (!Source->Init(ctx, src)) {
return false;
}
Node = Source->Build(ctx);
if (!Node) {
return false;
}
if (src) {
if (IsSubquery()) {
/// should be not used?
auto columnsPtr = Source->GetColumns();
if (!columnsPtr || columnsPtr->All || columnsPtr->QualifiedAll || columnsPtr->List.size() != 1) {
ctx.Error(Pos) << "Source used in expression should contain one concrete column";
return false;
}
Node = Y("Member", Y("SqlAccess", Q("dict"), Y("Take", Node, Y("Uint64", Q("1"))), Y("Uint64", Q("0"))), Q(columnsPtr->List.front()));
}
src->AddDependentSource(Source.Get());
}
return true;
}
bool IsSubquery() const {
return !AsInner && Source->IsSelect() && !CheckExist;
}
void DoUpdateState() const override {
State.Set(ENodeState::Const, IsSubquery());
}
TAstNode* Translate(TContext& ctx) const override {
Y_DEBUG_ABORT_UNLESS(Node);
return Node->Translate(ctx);
}
TPtr DoClone() const final {
return new TSourceNode(Pos, Source->CloneSource(), CheckExist);
}
protected:
TSourcePtr Source;
TNodePtr Node;
bool CheckExist;
};
TNodePtr BuildSourceNode(TPosition pos, TSourcePtr source, bool checkExist) {
return new TSourceNode(pos, std::move(source), checkExist);
}
class TFakeSource: public ISource {
public:
TFakeSource(TPosition pos)
: ISource(pos)
{}
bool IsFake() const override {
return true;
}
bool AddFilter(TContext& ctx, TNodePtr filter) override {
Y_UNUSED(filter);
ctx.Error(Pos) << "Source does not allow filtering";
return false;
}
TNodePtr Build(TContext& ctx) override {
Y_UNUSED(ctx);
return Y("AsList", Y("Uint32", Q("0")));
}
bool AddGroupKey(TContext& ctx, const TString& column) override {
Y_UNUSED(column);
ctx.Error(Pos) << "Source does not allow grouping";
return false;
}
bool AddAggregation(TContext& ctx, TAggregationPtr aggr) override {
Y_UNUSED(aggr);
ctx.Error(Pos) << "Source does not allow aggregation";
return false;
}
bool IsGroupByColumn(const TString& column) const override {
Y_UNUSED(column);
return false;
}
TNodePtr BuildFilter(TContext& ctx, const TString& label, const TNodePtr& groundNode) override {
Y_UNUSED(ctx);
Y_UNUSED(label);
Y_UNUSED(groundNode);
return nullptr;
}
TNodePtr BuildAggregation(const TString& label) override {
Y_UNUSED(label);
return nullptr;
}
TPtr DoClone() const final {
return new TFakeSource(Pos);
}
};
TSourcePtr BuildFakeSource(TPosition pos) {
return new TFakeSource(pos);
}
class TNodeSource: public ISource {
public:
TNodeSource(TPosition pos, const TNodePtr& node)
: ISource(pos)
, Node(node)
{
YQL_ENSURE(Node);
FakeSource = BuildFakeSource(pos);
}
void AllColumns() final {
UseAllColumns = true;
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) final {
Y_UNUSED(ctx);
if (UseAllColumns) {
return true;
}
if (column.IsAsterisk()) {
AllColumns();
} else {
Columns.push_back(*column.GetColumnName());
}
return true;
}
TNodePtr Build(TContext& ctx) final {
ctx.PushBlockShortcuts();
if (!Node->Init(ctx, FakeSource.Get())) {
return {};
}
Node = ctx.GroundBlockShortcutsForExpr(Node);
auto nodeAst = AstNode(Node);
if (UseAllColumns) {
return nodeAst;
} else {
auto members = Y();
for (auto& column : Columns) {
members = L(members, BuildQuotedAtom(Pos, column));
}
return Y(ctx.UseUnordered(*this) ? "OrderedMap" : "Map", nodeAst, BuildLambda(Pos, Y("row"), Y("SelectMembers", "row", Q(members))));
}
}
TPtr DoClone() const final {
return new TNodeSource(Pos, Node);
}
private:
TNodePtr Node;
TSourcePtr FakeSource;
TVector<TString> Columns;
bool UseAllColumns = false;
};
TSourcePtr BuildNodeSource(TPosition pos, const TNodePtr& node) {
return new TNodeSource(pos, node);
}
class IProxySource: public ISource {
protected:
IProxySource(TPosition pos, ISource* src)
: ISource(pos)
, Source(src)
{}
void AllColumns() override {
Y_DEBUG_ABORT_UNLESS(Source);
return Source->AllColumns();
}
const TColumns* GetColumns() const override {
Y_DEBUG_ABORT_UNLESS(Source);
return Source->GetColumns();
}
void GetInputTables(TTableList& tableList) const override {
Source->GetInputTables(tableList);
ISource::GetInputTables(tableList);
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
Y_DEBUG_ABORT_UNLESS(Source);
const TString label(Source->GetLabel());
Source->SetLabel(Label);
const auto ret = Source->AddColumn(ctx, column);
Source->SetLabel(label);
return ret;
}
bool ShouldUseSourceAsColumn(const TString& source) override {
return Source->ShouldUseSourceAsColumn(source);
}
bool IsStream() const override {
Y_DEBUG_ABORT_UNLESS(Source);
return Source->IsStream();
}
bool IsOrdered() const override {
Y_DEBUG_ABORT_UNLESS(Source);
return Source->IsOrdered();
}
TWriteSettings GetWriteSettings() const override {
Y_DEBUG_ABORT_UNLESS(Source);
return Source->GetWriteSettings();
}
protected:
void SetSource(ISource* source) {
Source = source;
}
ISource* Source;
};
class IRealSource: public ISource {
protected:
IRealSource(TPosition pos)
: ISource(pos)
{
}
void AllColumns() override {
Columns.SetAll();
}
const TColumns* GetColumns() const override {
return &Columns;
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
auto& label = *column.GetSourceName();
if (!label.empty() && label != GetLabel()) {
if (column.IsReliable()) {
ctx.Error(column.GetPos()) << "Unknown correlation name: " << label;
}
return {};
}
if (column.IsAsterisk()) {
return true;
}
const auto* name = column.GetColumnName();
if (name && !Columns.IsColumnPossible(ctx, *name) && !IsAlias(EExprSeat::GroupBy, *name)) {
if (column.IsReliable()) {
TStringBuilder sb;
sb << "Column " << *name << " is not in source column set";
if (const auto mistype = FindColumnMistype(*name)) {
sb << ". Did you mean " << mistype.GetRef() << "?";
}
ctx.Error(column.GetPos()) << sb;
}
return {};
}
return true;
}
TMaybe<TString> FindColumnMistype(const TString& name) const override {
auto result = FindMistypeIn(Columns.Real, name);
if (!result) {
auto result = FindMistypeIn(Columns.Artificial, name);
}
return result ? result : ISource::FindColumnMistype(name);
}
protected:
TColumns Columns;
};
class TMuxSource: public ISource {
public:
TMuxSource(TPosition pos, TVector<TSourcePtr>&& sources)
: ISource(pos)
, Sources(std::move(sources))
{
YQL_ENSURE(Sources.size() > 1);
}
void AllColumns() final {
for (auto& source: Sources) {
source->AllColumns();
}
}
const TColumns* GetColumns() const final {
// Columns are equal in all sources. Return from the first one
return Sources.front()->GetColumns();
}
void GetInputTables(TTableList& tableList) const final {
for (auto& source: Sources) {
source->GetInputTables(tableList);
}
ISource::GetInputTables(tableList);
}
bool IsStream() const final {
return AnyOf(Sources, [] (const TSourcePtr& s) { return s->IsStream(); });
}
bool DoInit(TContext& ctx, ISource* src) final {
for (auto& source: Sources) {
if (AsInner) {
source->UseAsInner();
}
ctx.PushBlockShortcuts();
if (src) {
src->AddDependentSource(source.Get());
}
if (!source->Init(ctx, src)) {
return false;
}
if (!source->InitFilters(ctx)) {
return false;
}
FiltersGrounds.push_back(ctx.GroundBlockShortcuts(Pos));
}
return true;
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) final {
for (auto& source: Sources) {
if (!source->AddColumn(ctx, column)) {
return {};
}
}
return true;
}
TNodePtr Build(TContext& ctx) final {
TNodePtr block;
auto muxArgs = Y();
for (size_t i = 0; i < Sources.size(); ++i) {
auto& source = Sources[i];
auto input = source->Build(ctx);
auto ref = ctx.MakeName("src");
muxArgs->Add(ref);
if (block) {
block = L(block, Y("let", ref, input));
} else {
block = Y(Y("let", ref, input));
}
auto filter = source->BuildFilter(ctx, ref, FiltersGrounds[i]);
if (filter) {
block = L(block, Y("let", ref, filter));
}
}
return GroundWithExpr(block, Y("Mux", Q(muxArgs)));
}
bool AddFilter(TContext& ctx, TNodePtr filter) final {
Y_UNUSED(filter);
ctx.Error() << "Filter is not allowed for multiple sources";
return false;
}
TPtr DoClone() const final {
// Don't clone FiltersGrounds container because it will be initialized in DoInit of cloned object
return new TMuxSource(Pos, CloneContainer(Sources));
}
protected:
TVector<TSourcePtr> Sources;
TVector<TNodePtr> FiltersGrounds;
};
TSourcePtr BuildMuxSource(TPosition pos, TVector<TSourcePtr>&& sources) {
return new TMuxSource(pos, std::move(sources));
}
class TSubqueryRefNode: public IRealSource {
public:
TSubqueryRefNode(const TNodePtr& subquery, const TString& alias, int tupleIndex)
: IRealSource(subquery->GetPos())
, Subquery(subquery)
, Alias(alias)
, TupleIndex(tupleIndex)
{
YQL_ENSURE(subquery->GetSource());
}
ISource* GetSource() override {
return this;
}
bool DoInit(TContext& ctx, ISource* src) override {
// independent subquery should not connect source
Subquery->UseAsInner();
if (!Subquery->Init(ctx, nullptr)) {
return false;
}
Columns = *Subquery->GetSource()->GetColumns();
Node = BuildAtom(Pos, Alias, TNodeFlags::Default);
if (TupleIndex != -1) {
Node = Y("Nth", Node, Q(ToString(TupleIndex)));
}
if (!Node->Init(ctx, src)) {
return false;
}
if (src && Subquery->GetSource()->IsSelect()) {
auto columnsPtr = &Columns;
if (!columnsPtr || columnsPtr->All || columnsPtr->QualifiedAll || columnsPtr->List.size() != 1) {
ctx.Error(Pos) << "Source used in expression should contain one concrete column";
return false;
}
Node = Y("Member", Y("SqlAccess", Q("dict"), Y("Take", Node, Y("Uint64", Q("1"))), Y("Uint64", Q("0"))), Q(columnsPtr->List.front()));
}
return true;
}
TNodePtr Build(TContext& ctx) override {
Y_UNUSED(ctx);
return Node;
}
bool IsStream() const override {
return Subquery->GetSource()->IsStream();
}
void DoUpdateState() const override {
State.Set(ENodeState::Const, true);
}
TAstNode* Translate(TContext& ctx) const override {
Y_DEBUG_ABORT_UNLESS(Node);
return Node->Translate(ctx);
}
TPtr DoClone() const final {
return new TSubqueryRefNode(Subquery, Alias, TupleIndex);
}
protected:
TNodePtr Subquery;
const TString Alias;
const int TupleIndex;
TNodePtr Node;
};
TNodePtr BuildSubqueryRef(TNodePtr subquery, const TString& alias, int tupleIndex) {
return new TSubqueryRefNode(std::move(subquery), alias, tupleIndex);
}
class TTableSource: public IRealSource {
public:
TTableSource(TPosition pos, const TTableRef& table, bool stream, const TString& label)
: IRealSource(pos)
, Table(table)
, Stream(stream)
{
SetLabel(label.empty() ? Table.ShortName() : label);
}
void GetInputTables(TTableList& tableList) const override {
tableList.push_back(Table);
ISource::GetInputTables(tableList);
}
bool ShouldUseSourceAsColumn(const TString& source) override {
return source && source != GetLabel();
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
Columns.Add(column.GetColumnName(), column.GetCountHint(), column.IsArtificial(), column.IsReliable());
if (!IRealSource::AddColumn(ctx, column)) {
return {};
}
return false;
}
bool SetSamplingOptions(
TContext& ctx,
TPosition pos,
ESampleMode mode,
TNodePtr samplingRate,
TNodePtr samplingSeed) override {
Y_UNUSED(pos);
TString modeName;
if (!samplingSeed) {
samplingSeed = Y("Int32", Q("0"));
}
switch (mode) {
case ESampleMode::Auto:
modeName = "bernoulli";
samplingRate = Y("*", samplingRate, Y("Double", Q("100")));
break;
case ESampleMode::Bernoulli:
modeName = "bernoulli";
break;
case ESampleMode::System:
modeName = "system";
break;
}
samplingRate = Y("Ensure", samplingRate, Y(">", samplingRate, Y("Double", Q("0"))), Y("String", Q("Expected sampling rate to be positive")));
samplingRate = Y("Ensure", samplingRate, Y("<=", samplingRate, Y("Double", Q("100"))), Y("String", Q("Sampling rate is over 100%")));
auto sampleSettings = Q(Y(Q(modeName), Y("EvaluateAtom", Y("ToString", samplingRate)), Y("EvaluateAtom", Y("ToString", samplingSeed))));
auto sampleOption = Q(Y(Q("sample"), sampleSettings));
if (Table.Options) {
if (!Table.Options->Init(ctx, this)) {
return false;
}
Table.Options = L(Table.Options, sampleOption);
} else {
Table.Options = Y(sampleOption);
}
return true;
}
TNodePtr Build(TContext& ctx) override {
if (!Table.Keys->Init(ctx, nullptr)) {
return nullptr;
}
return AstNode(Table.RefName);
}
bool IsStream() const override {
return Stream;
}
TPtr DoClone() const final {
return new TTableSource(Pos, Table, Stream, GetLabel());
}
bool IsTableSource() const override {
return true;
}
protected:
TTableRef Table;
const bool Stream;
};
TSourcePtr BuildTableSource(TPosition pos, const TTableRef& table, bool stream, const TString& label) {
return new TTableSource(pos, table, stream, label);
}
class TInnerSource: public IProxySource {
public:
TInnerSource(TPosition pos, TNodePtr node, const TString& label)
: IProxySource(pos, nullptr)
, Node(node)
{
SetLabel(label);
}
bool ShouldUseSourceAsColumn(const TString& source) override {
return source && source != GetLabel();
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
if (const TString* columnName = column.GetColumnName()) {
if (columnName && IsExprAlias(*columnName)) {
return true;
}
}
return IProxySource::AddColumn(ctx, column);
}
bool DoInit(TContext& ctx, ISource* src) override {
auto source = Node->GetSource();
if (!source) {
NewSource = TryMakeSourceFromExpression(ctx, Node);
source = NewSource.Get();
}
if (!source) {
ctx.Error(Pos) << "Invalid inner source node";
return false;
}
source->SetLabel(Label);
if (!NewSource) {
Node->UseAsInner();
if (!Node->Init(ctx, src)) {
return false;
}
}
SetSource(source);
if (NewSource && !NewSource->Init(ctx, src)) {
return false;
}
return ISource::DoInit(ctx, source);
}
TNodePtr Build(TContext& ctx) override {
Y_UNUSED(ctx);
return NewSource ? NewSource->Build(ctx) : Node;
}
TPtr DoClone() const final {
return new TInnerSource(Pos, SafeClone(Node), GetLabel());
}
protected:
TNodePtr Node;
TSourcePtr NewSource;
};
TSourcePtr BuildInnerSource(TPosition pos, TNodePtr node, const TString& label) {
return new TInnerSource(pos, node, label);
}
/// \todo move to reduce.cpp? or mapreduce.cpp?
class TReduceSource: public IRealSource {
public:
TReduceSource(TPosition pos,
ReduceMode mode,
TSourcePtr source,
TVector<TSortSpecificationPtr>&& orderBy,
TVector<TNodePtr>&& keys,
TVector<TNodePtr>&& args,
TNodePtr udf,
TNodePtr having,
const TWriteSettings& settings)
: IRealSource(pos)
, Mode(mode)
, Source(std::move(source))
, OrderBy(std::move(orderBy))
, Keys(std::move(keys))
, Args(std::move(args))
, Udf(udf)
, Having(having)
, Settings(settings)
{
YQL_ENSURE(!Keys.empty());
YQL_ENSURE(Source);
}
void GetInputTables(TTableList& tableList) const override {
Source->GetInputTables(tableList);
ISource::GetInputTables(tableList);
}
bool DoInit(TContext& ctx, ISource* src) final {
if (AsInner) {
Source->UseAsInner();
}
ctx.PushBlockShortcuts();
YQL_ENSURE(!src);
if (!Source->Init(ctx, src)) {
return false;
}
if (!Source->InitFilters(ctx)) {
return false;
}
FiltersGround = ctx.GroundBlockShortcuts(Pos);
src = Source.Get();
for (auto& key: Keys) {
if (!key->Init(ctx, src)) {
return false;
}
auto keyNamePtr = key->GetColumnName();
YQL_ENSURE(keyNamePtr);
if (!src->AddGroupKey(ctx, *keyNamePtr)) {
return false;
}
}
ctx.PushBlockShortcuts();
if (Having && !Having->Init(ctx, nullptr)) {
return false;
}
HavingGround = ctx.GroundBlockShortcuts(Pos);
/// SIN: verify reduce one argument
if (Args.size() != 1) {
ctx.Error(Pos) << "REDUCE requires exactly one UDF argument";
return false;
}
ctx.PushBlockShortcuts();
if (!Args[0]->Init(ctx, src)) {
return false;
}
ExprGround = ctx.GroundBlockShortcuts(Pos);
ctx.PushBlockShortcuts();
for (auto orderSpec: OrderBy) {
if (!orderSpec->OrderExpr->Init(ctx, src)) {
return false;
}
}
OrderByGround = ctx.GroundBlockShortcuts(Pos);
if (!Udf->Init(ctx, src)) {
return false;
}
if (Udf->GetLabel().empty()) {
Columns.SetAll();
} else {
Columns.Add(&Udf->GetLabel(), false);
}
return true;
}
TNodePtr Build(TContext& ctx) final {
auto input = Source->Build(ctx);
if (!input) {
return nullptr;
}
auto keysTuple = Y();
if (Keys.size() == 1) {
keysTuple = Y("Member", "row", BuildQuotedAtom(Pos, *Keys.back()->GetColumnName()));
}
else {
for (const auto& key: Keys) {
keysTuple = L(keysTuple, Y("Member", "row", BuildQuotedAtom(Pos, *key->GetColumnName())));
}
keysTuple = Q(keysTuple);
}
auto extractKey = Y("SqlExtractKey", "row", BuildLambda(Pos, Y("row"), keysTuple));
auto extractKeyLambda = BuildLambda(Pos, Y("row"), extractKey);
TNodePtr processPartitions;
switch (Mode) {
case ReduceMode::ByAll: {
auto columnPtr = Args[0]->GetColumnName();
TNodePtr expr = BuildAtom(Pos, "partitionStream");
if (!columnPtr || *columnPtr != "*") {
expr = Y("Map", "partitionStream", BuildLambda(Pos, Y("keyPair"), Q(L(Y(),\
Y("Nth", "keyPair", Q(ToString("0"))),\
Y("Map", Y("Nth", "keyPair", Q(ToString("1"))), BuildLambda(Pos, Y("row"),
GroundWithExpr(ExprGround, Args[0])))))));
}
processPartitions = Y("ToSequence", Y("Apply", Udf, expr));
break;
}
case ReduceMode::ByPartition: {
processPartitions = Y("SqlReduce", "partitionStream", extractKeyLambda, Udf,
BuildLambda(Pos, Y("row"), GroundWithExpr(ExprGround, Args[0])));
break;
}
default:
YQL_ENSURE(false, "Unexpected REDUCE mode");
}
TNodePtr sortDirection;
auto sortKeySelector = OrderByGround;
FillSortParts(OrderBy, sortDirection, sortKeySelector);
if (!OrderBy.empty()) {
sortKeySelector = BuildLambda(Pos, Y("row"), Y("SqlExtractKey", "row", sortKeySelector));
}
auto partitionByKey = Y(Mode == ReduceMode::ByAll ? "PartitionByKey" : "PartitionsByKeys", "core", extractKeyLambda,
sortDirection, sortKeySelector, BuildLambda(Pos, Y("partitionStream"), processPartitions));
auto block(Y(Y("let", "core", input)));
auto filter = Source->BuildFilter(ctx, "core", FiltersGround);
if (filter) {
block = L(block, Y("let", "core", filter));
}
block = L(block, Y("let", "core", Y("AutoDemux", partitionByKey)));
if (Having) {
block = L(block, Y("let", "core",
Y("Filter", "core", BuildLambda(Pos, Y("row"), GroundWithExpr(HavingGround, Y("Coalesce", Having, Y("Bool", Q("false"))))))
));
}
return Y("block", Q(L(block, Y("return", "core"))));
}
TWriteSettings GetWriteSettings() const final {
return Settings;
}
TPtr DoClone() const final {
return new TReduceSource(Pos, Mode, Source->CloneSource(), CloneContainer(OrderBy),
CloneContainer(Keys), CloneContainer(Args), SafeClone(Udf), SafeClone(Having), Settings);
}
private:
ReduceMode Mode;
TSourcePtr Source;
TVector<TSortSpecificationPtr> OrderBy;
TVector<TNodePtr> Keys;
TVector<TNodePtr> Args;
TNodePtr Udf;
TNodePtr Having;
const TWriteSettings Settings;
TNodePtr ExprGround;
TNodePtr FiltersGround;
TNodePtr OrderByGround;
TNodePtr HavingGround;
};
TSourcePtr BuildReduce(TPosition pos,
ReduceMode mode,
TSourcePtr source,
TVector<TSortSpecificationPtr>&& orderBy,
TVector<TNodePtr>&& keys,
TVector<TNodePtr>&& args,
TNodePtr udf,
TNodePtr having,
const TWriteSettings& settings) {
return new TReduceSource(pos, mode, std::move(source), std::move(orderBy), std::move(keys), std::move(args), udf, having, settings);
}
class TCompositeSelect: public IRealSource {
public:
TCompositeSelect(TPosition pos, TSourcePtr source, const TWriteSettings& settings)
: IRealSource(pos)
, Source(std::move(source))
, Settings(settings)
{
YQL_ENSURE(Source);
}
void SetSubselects(TVector<TSourcePtr>&& subselects, TSet<TString>&& groupingCols) {
Subselects = std::move(subselects);
GroupingCols = std::move(groupingCols);
Y_DEBUG_ABORT_UNLESS(Subselects.size() > 1);
}
void GetInputTables(TTableList& tableList) const override {
for (const auto& select: Subselects) {
select->GetInputTables(tableList);
}
ISource::GetInputTables(tableList);
}
bool DoInit(TContext& ctx, ISource* src) override {
if (AsInner) {
Source->UseAsInner();
}
ctx.PushBlockShortcuts();
if (src) {
src->AddDependentSource(Source.Get());
}
if (!Source->Init(ctx, src)) {
return false;
}
if (!Source->InitFilters(ctx)) {
return false;
}
FiltersGround = ctx.GroundBlockShortcuts(Pos);
for (const auto& select: Subselects) {
select->SetLabel(Label);
if (AsInner) {
select->UseAsInner();
}
if (!select->Init(ctx, Source.Get())) {
return false;
}
}
return true;
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
for (const auto& select: Subselects) {
if (!select->AddColumn(ctx, column)) {
return {};
}
}
return true;
}
TNodePtr Build(TContext& ctx) override {
auto input = Source->Build(ctx);
auto block(Y(Y("let", "composite", input)));
auto filter = Source->BuildFilter(ctx, "composite", FiltersGround);
if (filter) {
block = L(block, Y("let", "composite", filter));
}
TNodePtr compositeNode = Y("UnionAll");
for (const auto& select: Subselects) {
auto addNode = select->Build(ctx);
if (!addNode) {
return nullptr;
}
compositeNode->Add(addNode);
}
return GroundWithExpr(block, compositeNode);
}
bool IsGroupByColumn(const TString& column) const override {
return GroupingCols.contains(column);
}
const TSet<TString>& GetGroupingCols() const {
return GroupingCols;
}
TNodePtr BuildSort(TContext& ctx, const TString& label) override {
return Subselects.front()->BuildSort(ctx, label);
}
bool IsOrdered() const override {
return Subselects.front()->IsOrdered();
}
const TColumns* GetColumns() const override{
return Subselects.front()->GetColumns();
}
ISource* RealSource() const {
return Source.Get();
}
TWriteSettings GetWriteSettings() const override {
return Settings;
}
TNodePtr DoClone() const final {
auto newSource = MakeIntrusive<TCompositeSelect>(Pos, Source->CloneSource(), Settings);
newSource->SetSubselects(CloneContainer(Subselects), TSet<TString>(GroupingCols));
return newSource;
}
private:
TSourcePtr Source;
const TWriteSettings Settings;
TVector<TSourcePtr> Subselects;
TSet<TString> GroupingCols;
TNodePtr FiltersGround;
};
/// \todo simplify class
class TSelectCore: public IRealSource {
public:
TSelectCore(
TPosition pos,
TSourcePtr source,
const TVector<TNodePtr>& groupByExpr,
const TVector<TNodePtr>& groupBy,
const TVector<TSortSpecificationPtr>& orderBy,
TNodePtr having,
TWinSpecs& winSpecs,
THoppingWindowSpecPtr hoppingWindowSpec,
const TVector<TNodePtr>& terms,
bool distinct,
const TVector<TNodePtr>& without,
bool stream,
const TWriteSettings& settings
)
: IRealSource(pos)
, Source(std::move(source))
, GroupByExpr(groupByExpr)
, GroupBy(groupBy)
, OrderBy(orderBy)
, Having(having)
, WinSpecs(winSpecs)
, Terms(terms)
, Without(without)
, Distinct(distinct)
, HoppingWindowSpec(hoppingWindowSpec)
, Stream(stream)
, Settings(settings)
{
}
void GetInputTables(TTableList& tableList) const override {
Source->GetInputTables(tableList);
ISource::GetInputTables(tableList);
}
bool IsComparableExpression(TContext& ctx, const TNodePtr& expr, const char* sqlConstruction) {
if (expr->IsConstant()) {
ctx.Error(expr->GetPos()) << "Unable to " << sqlConstruction << " constant expression";
return false;
}
if (expr->IsAggregated() && !expr->HasState(ENodeState::AggregationKey)) {
ctx.Error(expr->GetPos()) << "Unable to " << sqlConstruction << " aggregated values";
return false;
}
if (expr->GetSourceName()) {
return true;
}
if (expr->GetOpName().empty()) {
ctx.Error(expr->GetPos()) << "You should use in " << sqlConstruction << " column name, qualified field, callable function or expression";
return false;
}
return true;
}
bool DoInit(TContext& ctx, ISource* initSrc) override {
if (AsInner) {
Source->UseAsInner();
}
if (!Source->Init(ctx, initSrc)) {
return false;
}
if (Stream && !Source->IsStream()) {
ctx.Error(Pos) << "SELECT STREAM is unsupported for non-streaming sources";
return false;
}
if (!Stream && Source->IsStream() && !ctx.PragmaDirectRead) {
ctx.Error(Pos) << "SELECT STREAM must be used for streaming sources";
return false;
}
ctx.PushBlockShortcuts();
auto src = Source.Get();
bool hasError = false;
for (auto& expr: GroupByExpr) {
if (!expr->Init(ctx, src) || !IsComparableExpression(ctx, expr, "GROUP BY")) {
hasError = true;
continue;
}
}
if (!src->AddExpressions(ctx, GroupByExpr, EExprSeat::GroupBy)) {
hasError = true;
}
GroupByExprGround = ctx.GroundBlockShortcuts(Pos);
/// grouped expressions are available in filters
ctx.PushBlockShortcuts();
if (!Source->InitFilters(ctx)) {
hasError = true;
}
FiltersGround = ctx.GroundBlockShortcuts(Pos);
const bool isJoin = Source->GetJoin();
for (auto& expr: GroupBy) {
if (!expr->Init(ctx, src)) {
hasError = true;
continue;
}
auto keyNamePtr = expr->GetColumnName();
if (keyNamePtr && expr->GetLabel().empty()) {
auto usedColumn = *keyNamePtr;
auto sourceNamePtr = expr->GetSourceName();
auto columnNode = dynamic_cast<TColumnNode*>(expr.Get());
if (isJoin && (!columnNode || !columnNode->IsArtificial())) {
if (!sourceNamePtr || sourceNamePtr->empty()) {
ctx.Error(expr->GetPos()) << "Columns in GROUP BY should have correlation name, error in key: " << usedColumn;
hasError = true;
continue;
}
usedColumn = DotJoin(*sourceNamePtr, usedColumn);
}
if (!src->AddGroupKey(ctx, usedColumn)) {
hasError = true;
continue;
}
}
}
ctx.PushBlockShortcuts();
if (Having && !Having->Init(ctx, src)) {
hasError = true;
}
HavingGround = ctx.GroundBlockShortcuts(Pos);
src->AddWindowSpecs(WinSpecs);
if (!InitSelect(ctx, src, isJoin, hasError)) {
return false;
}
src->FinishColumns();
Aggregate = src->BuildAggregation("core");
if (src->IsFlattenByColumns() || src->IsFlattenColumns()) {
Flatten = src->IsFlattenByColumns() ?
src->BuildFlattenByColumns("row") :
src->BuildFlattenColumns("row");
if (!Flatten || !Flatten->Init(ctx, src)) {
hasError = true;
}
}
if (GroupByExpr) {
auto sourcePreaggregate = src->BuildPreaggregatedMap(ctx);
if (!sourcePreaggregate) {
hasError = true;
} else {
PreaggregatedMap = !GroupByExprGround ? sourcePreaggregate :
Y("block", Q(L(GroupByExprGround, Y("return", sourcePreaggregate))));
}
}
if (Aggregate) {
if (!Aggregate->Init(ctx, src)) {
hasError = true;
}
if (Having) {
Aggregate = Y(
"Filter",
Aggregate,
BuildLambda(Pos, Y("row"), GroundWithExpr(HavingGround, Y("Coalesce", Having, Y("Bool", Q("false")))))
);
}
} else if (Having) {
ctx.Error(Having->GetPos()) << "HAVING with meaning GROUP BY () should be with aggregation function.";
hasError = true;
} else if (!Distinct && !GroupBy.empty()) {
ctx.Error(Pos) << "No aggregations were specified";
hasError = true;
}
if (hasError) {
return false;
}
if (src->IsCalcOverWindow()) {
if (src->IsExprSeat(EExprSeat::WindowPartitionBy, EExprType::WithExpression)) {
PrewindowMap = src->BuildPrewindowMap(ctx, WinSpecsPartitionByGround);
if (!PrewindowMap) {
hasError = true;
}
}
CalcOverWindow = src->BuildCalcOverWindow(ctx, "core", WinSpecsOrderByGround);
if (!CalcOverWindow) {
hasError = true;
}
}
if (hasError) {
return false;
}
return true;
}
TNodePtr Build(TContext& ctx) override {
auto input = Source->Build(ctx);
if (!input) {
return nullptr;
}
TNodePtr terms = BuildColumnsTerms(ctx);
bool ordered = ctx.UseUnordered(*this);
auto block(Y(Y("let", "core", input)));
if (Flatten) {
block = L(block, Y("let", "core", Y(ordered ? "OrderedFlatMap" : "FlatMap", "core", BuildLambda(Pos, Y("row"), Flatten, "res"))));
}
if (PreaggregatedMap) {
block = L(block, Y("let", "core", Y("FlatMap", "core", BuildLambda(Pos, Y("row"), PreaggregatedMap))));
if (Source->IsCompositeSource() && !Columns.QualifiedAll) {
block = L(block, Y("let", "preaggregated", "core"));
}
} else if (Source->IsCompositeSource() && !Columns.QualifiedAll) {
block = L(block, Y("let", "origcore", "core"));
}
auto filter = Source->BuildFilter(ctx, "core", FiltersGround);
if (filter) {
block = L(block, Y("let", "core", filter));
}
if (Aggregate) {
block = L(block, Y("let", "core", Aggregate));
ordered = false;
}
if (PrewindowMap) {
block = L(block, Y("let", "core", PrewindowMap));
}
if (CalcOverWindow) {
block = L(block, Y("let", "core", CalcOverWindow));
}
block = L(block, Y("let", "core", Y("EnsurePersistable", Y(ordered ? "OrderedFlatMap" : "FlatMap", "core", BuildLambda(Pos, Y("row"), terms, "res")))));
return Y("block", Q(L(block, Y("return", "core"))));
}
TNodePtr BuildSort(TContext& ctx, const TString& label) override {
Y_UNUSED(ctx);
if (OrderBy.empty()) {
return nullptr;
}
return Y("let", label, BuildSortSpec(OrderBy, label, OrderByGround));
}
bool IsSelect() const override {
return true;
}
bool IsStream() const override {
return Stream;
}
bool IsOrdered() const override {
return !OrderBy.empty();
}
TWriteSettings GetWriteSettings() const override {
return Settings;
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
if (OrderByInit && Source->GetJoin()) {
column.SetAsNotReliable();
auto maybeExist = IRealSource::AddColumn(ctx, column);
if (maybeExist && maybeExist.GetRef()) {
return true;
}
return Source->AddColumn(ctx, column);
}
return IRealSource::AddColumn(ctx, column);
}
TNodePtr PrepareWithout(const TNodePtr& base) {
auto terms = base;
if (Without) {
for (auto without: Without) {
auto name = *without->GetColumnName();
if (Source && Source->GetJoin()) {
name = DotJoin(*without->GetSourceName(), name);
}
terms = L(terms, Y("let", "row", Y("RemoveMember", "row", Q(name))));
}
}
if (Source) {
for (auto column : Source->GetTmpWindowColumns()) {
terms = L(terms, Y("let", "row", Y("RemoveMember", "row", Q(column))));
}
}
return terms;
}
TNodePtr DoClone() const final {
TWinSpecs newSpecs;
for (auto cur: WinSpecs) {
newSpecs.emplace(cur.first, cur.second->Clone());
}
return new TSelectCore(Pos, Source->CloneSource(), CloneContainer(GroupByExpr),
CloneContainer(GroupBy), CloneContainer(OrderBy), SafeClone(Having), newSpecs, SafeClone(HoppingWindowSpec),
CloneContainer(Terms), Distinct, Without, Stream, Settings);
}
private:
bool InitSelect(TContext& ctx, ISource* src, bool isJoin, bool& hasError) {
for (auto iter: WinSpecs) {
auto winSpec = *iter.second;
ctx.PushBlockShortcuts();
for (auto& partitionNode: winSpec.Partitions) {
auto invalidPartitionNodeFunc = [&]() {
ctx.Error(partitionNode->GetPos()) << "Expected either column name, either alias" <<
" or expression with alias for PARTITION BY expression in WINDOWS clause";
hasError = true;
};
if (!partitionNode->GetLabel() && !partitionNode->GetColumnName()) {
invalidPartitionNodeFunc();
continue;
}
if (!partitionNode->Init(ctx, src)) {
hasError = true;
continue;
}
if (!partitionNode->GetLabel() && !partitionNode->GetColumnName()) {
invalidPartitionNodeFunc();
continue;
}
}
WinSpecsPartitionByGround = ctx.GroundBlockShortcuts(Pos, WinSpecsPartitionByGround);
if (!src->AddExpressions(ctx, winSpec.Partitions, EExprSeat::WindowPartitionBy)) {
hasError = true;
}
ctx.PushBlockShortcuts();
for (auto orderSpec: winSpec.OrderBy) {
if (!orderSpec->OrderExpr->Init(ctx, src)) {
hasError = true;
}
}
WinSpecsOrderByGround = ctx.GroundBlockShortcuts(Pos, WinSpecsOrderByGround);
}
if (HoppingWindowSpec) {
ctx.PushBlockShortcuts();
if (!HoppingWindowSpec->TimeExtractor->Init(ctx, src)) {
hasError = true;
}
HoppingWindowSpec->TimeExtractor = ctx.GroundBlockShortcutsForExpr(HoppingWindowSpec->TimeExtractor);
src->SetHoppingWindowSpec(HoppingWindowSpec);
}
ctx.PushBlockShortcuts();
for (auto& term: Terms) {
if (!term->Init(ctx, src)) {
hasError = true;
continue;
}
auto column = term->GetColumnName();
if (Distinct) {
if (!column) {
ctx.Error(Pos) << "SELECT DISTINCT requires a list of column references";
hasError = true;
continue;
}
if (term->IsAsterisk()) {
ctx.Error(Pos) << "SELECT DISTINCT * is not implemented yet";
hasError = true;
continue;
}
auto columnName = *column;
if (isJoin) {
auto sourceNamePtr = term->GetSourceName();
if (!sourceNamePtr || sourceNamePtr->empty()) {
if (src->IsGroupByColumn(columnName)) {
ctx.Error(term->GetPos()) << ErrorDistinctByGroupKey(columnName);
hasError = true;
continue;
} else {
ctx.Error(term->GetPos()) << ErrorDistinctWithoutCorrelation(columnName);
hasError = true;
continue;
}
}
columnName = DotJoin(*sourceNamePtr, columnName);
}
if (src->IsGroupByColumn(columnName)) {
ctx.Error(term->GetPos()) << ErrorDistinctByGroupKey(columnName);
hasError = true;
continue;
}
if (!src->AddGroupKey(ctx, columnName)) {
hasError = true;
continue;
}
GroupBy.push_back(BuildColumn(Pos, columnName));
}
TString label(term->GetLabel());
bool hasName = true;
if (label.empty()) {
auto source = term->GetSourceName();
if (term->IsAsterisk() && !source->empty()) {
Columns.QualifiedAll = true;
label = DotJoin(*source, "*");
} else if (column) {
label = isJoin && source && *source ? DotJoin(*source, *column) : *column;
} else {
label = TStringBuilder() << "column" << Columns.List.size();
hasName = false;
}
}
if (!Columns.Add(&label, false, false, true, hasName)) {
ctx.Error(Pos) << "Duplicate column: " << label;
hasError = true;
continue;
}
}
TermsGround = ctx.GroundBlockShortcuts(Pos);
if (Columns.All || Columns.QualifiedAll) {
Source->AllColumns();
if (Columns.All && isJoin && ctx.SimpleColumns) {
Columns.All = false;
Columns.QualifiedAll = true;
const auto pos = Terms.front()->GetPos();
Terms.clear();
for (const auto& source: Source->GetJoin()->GetJoinLabels()) {
auto withDot = DotJoin(source, "*");
Columns.Add(&withDot, false);
Terms.push_back(BuildColumn(pos, "*", source));
}
}
}
for (const auto& without: Without) {
auto namePtr = without->GetColumnName();
auto sourcePtr = without->GetSourceName();
YQL_ENSURE(namePtr && *namePtr);
if (isJoin && !(sourcePtr && *sourcePtr)) {
ctx.Error(without->GetPos()) << "Expected correlation name for WITHOUT in JOIN";
hasError = true;
continue;
}
}
if (Having && !Having->Init(ctx, src)) {
hasError = true;
}
if (!src->IsCompositeSource() && !Distinct && !Columns.All && src->HasAggregations()) {
/// verify select aggregation compatibility
TVector<TNodePtr> exprs(Terms);
if (Having) {
exprs.push_back(Having);
}
for (const auto& iter: WinSpecs) {
for (const auto& sortSpec: iter.second->OrderBy) {
exprs.push_back(sortSpec->OrderExpr);
}
}
if (!ValidateAllNodesForAggregation(ctx, exprs)) {
hasError = true;
}
}
const auto label = GetLabel();
ctx.PushBlockShortcuts();
for (const auto& sortSpec: OrderBy) {
auto& expr = sortSpec->OrderExpr;
SetLabel(Source->GetLabel());
OrderByInit = true;
if (!expr->Init(ctx, this)) {
hasError = true;
continue;
}
OrderByInit = false;
if (!IsComparableExpression(ctx, expr, "ORDER BY")) {
hasError = true;
continue;
}
}
OrderByGround = ctx.GroundBlockShortcuts(Pos);
SetLabel(label);
return true;
}
TNodePtr BuildColumnsTerms(TContext& ctx) {
TNodePtr terms;
if (Columns.All) {
Y_DEBUG_ABORT_UNLESS(Columns.List.empty());
terms = PrepareWithout(Y());
if (ctx.EnableSystemColumns) {
terms = L(terms, Y("let", "res", Y("AsList", Y("RemoveSystemMembers", "row"))));
} else {
terms = L(terms, (Y("let", "res", Y("AsList", "row"))));
}
} else if (!Columns.List.empty()) {
Y_DEBUG_ABORT_UNLESS(Columns.List.size() == Terms.size());
const bool isJoin = Source->GetJoin();
terms = TermsGround ? TermsGround : Y();
if (Source->IsCompositeSource() && !Columns.QualifiedAll) {
auto compositeSrcPtr = static_cast<TCompositeSelect*>(Source->GetCompositeSource());
if (compositeSrcPtr) {
const auto& groupings = compositeSrcPtr->GetGroupingCols();
for (const auto& column: groupings) {
bool isAggregated = false;
for (const auto& group: GroupBy) {
const auto columnName = group->GetColumnName();
if (columnName && *columnName == column) {
isAggregated = true;
break;
}
}
if (isAggregated) {
continue;
}
const TString tableName = PreaggregatedMap ? "preaggregated" : "origcore";
terms = L(terms, Y("let", "row", Y("AddMember", "row", BuildQuotedAtom(Pos, column), Y("Nothing", Y("MatchType",
Y("StructMemberType", Y("ListItemType", Y("TypeOf", tableName)), Q(column)),
Q("Optional"), Y("lambda", Q(Y("item")), "item"), Y("lambda", Q(Y("item")), Y("OptionalType", "item")))))));
}
}
}
TNodePtr structObj = nullptr;
auto column = Columns.List.begin();
for (auto& term: Terms) {
if (!term->IsAsterisk()) {
if (!structObj) {
structObj = Y("AsStruct");
}
structObj = L(structObj, Q(Y(BuildQuotedAtom(Pos, *column), term)));
}
++column;
}
terms = structObj ? L(terms, Y("let", "res", structObj)) : Y(Y("let", "res", Y("AsStruct")));
terms = PrepareWithout(terms);
if (Columns.QualifiedAll) {
if (ctx.SimpleColumns && !isJoin) {
terms = L(terms, Y("let", "res", Y("FlattenMembers", Q(Y(BuildQuotedAtom(Pos, ""), "res")),
Q(Y(BuildQuotedAtom(Pos, ""), "row")))));
} else {
if (isJoin && ctx.SimpleColumns) {
const auto& sameKeyMap = Source->GetJoin()->GetSameKeysMap();
if (sameKeyMap) {
terms = L(terms, Y("let", "flatSameKeys", "row"));
for (const auto& sameKeysPair: sameKeyMap) {
const auto& column = sameKeysPair.first;
auto keys = Y("Coalesce");
auto sameSourceIter = sameKeysPair.second.begin();
for (auto end = sameKeysPair.second.end(); sameSourceIter != end; ++sameSourceIter) {
auto addKeyNode = Q(DotJoin(*sameSourceIter, column));
keys = L(keys, Y("TryMember", "row", addKeyNode, Y("Null")));
}
terms = L(terms, Y("let", "flatSameKeys", Y("AddMember", "flatSameKeys", Q(column), keys)));
sameSourceIter = sameKeysPair.second.begin();
for (auto end = sameKeysPair.second.end(); sameSourceIter != end; ++sameSourceIter) {
auto removeKeyNode = Q(DotJoin(*sameSourceIter, column));
terms = L(terms, Y("let", "flatSameKeys", Y("ForceRemoveMember", "flatSameKeys", removeKeyNode)));
}
}
terms = L(terms, Y("let", "row", "flatSameKeys"));
}
}
auto members = isJoin ? Y() : Y("FlattenMembers");
for (auto& term: Terms) {
if (term->IsAsterisk()) {
auto sourceName = term->GetSourceName();
YQL_ENSURE(*sourceName && !sourceName->empty());
if (isJoin) {
members = L(members, BuildQuotedAtom(Pos, *sourceName + "."));
} else {
auto prefix = ctx.SimpleColumns ? "" : *sourceName + ".";
members = L(members, Q(Y(Q(prefix), "row")));
}
}
}
if (isJoin) {
members = Y(ctx.SimpleColumns ? "DivePrefixMembers" : "SelectMembers", "row", Q(members));
}
terms = L(terms, Y("let", "res", Y("FlattenMembers", Q(Y(BuildQuotedAtom(Pos, ""), "res")),
Q(Y(BuildQuotedAtom(Pos, ""), members)))));
if (isJoin && ctx.SimpleColumns) {
for (const auto& sameKeysPair: Source->GetJoin()->GetSameKeysMap()) {
const auto& column = sameKeysPair.first;
auto addMemberKeyNode = Y("Member", "row", Q(column));
terms = L(terms, Y("let", "res", Y("AddMember", "res", Q(column), addMemberKeyNode)));
}
}
}
}
terms = L(terms, Y("let", "res", Y("AsList", "res")));
}
return terms;
}
private:
TSourcePtr Source;
TVector<TNodePtr> GroupByExpr;
TVector<TNodePtr> GroupBy;
TVector<TSortSpecificationPtr> OrderBy;
TNodePtr Having;
TWinSpecs WinSpecs;
TNodePtr Flatten;
TNodePtr PreaggregatedMap;
TNodePtr PrewindowMap;
TNodePtr Aggregate;
TNodePtr CalcOverWindow;
TNodePtr FiltersGround;
TNodePtr TermsGround;
TNodePtr GroupByExprGround;
TNodePtr HavingGround;
TNodePtr OrderByGround;
TNodePtr WinSpecsPartitionByGround;
TNodePtr WinSpecsOrderByGround;
TVector<TNodePtr> Terms;
TVector<TNodePtr> Without;
const bool Distinct;
bool OrderByInit = false;
THoppingWindowSpecPtr HoppingWindowSpec;
const bool Stream;
const TWriteSettings Settings;
};
class TProcessSource: public IRealSource {
public:
TProcessSource(
TPosition pos,
TSourcePtr source,
TNodePtr with,
TVector<TNodePtr>&& terms,
bool listCall,
bool stream,
const TWriteSettings& settings
)
: IRealSource(pos)
, Source(std::move(source))
, With(with)
, Terms(std::move(terms))
, ListCall(listCall)
, Stream(stream)
, Settings(settings)
{
}
void GetInputTables(TTableList& tableList) const override {
Source->GetInputTables(tableList);
ISource::GetInputTables(tableList);
}
bool DoInit(TContext& ctx, ISource* initSrc) override {
if (AsInner) {
Source->UseAsInner();
}
if (!Source->Init(ctx, initSrc)) {
return false;
}
if (Stream && !Source->IsStream()) {
ctx.Error(Pos) << "PROCESS STREAM is unsupported for non-streaming sources";
return false;
}
if (!Stream && Source->IsStream() && !ctx.PragmaDirectRead) {
ctx.Error(Pos) << "PROCESS STREAM must be used for streaming sources";
return false;
}
auto src = Source.Get();
if (!With) {
src->AllColumns();
Columns.SetAll();
src->FinishColumns();
return true;
}
/// grouped expressions are available in filters
ctx.PushBlockShortcuts();
if (!Source->InitFilters(ctx)) {
return false;
}
FiltersGround = ctx.GroundBlockShortcuts(Pos);
// Use fake source in case of list process to restrict column access.
TSourcePtr fakeSource;
if (ListCall) {
fakeSource = BuildFakeSource(src->GetPos());
src->AllColumns();
}
auto processSource = ListCall ? fakeSource.Get() : src;
Y_DEBUG_ABORT_UNLESS(processSource != nullptr);
ctx.PushBlockShortcuts();
if (!With->Init(ctx, processSource)) {
return false;
}
if (With->GetLabel().empty()) {
Columns.SetAll();
} else {
if (ListCall) {
ctx.Error(With->GetPos()) << "Label is not allowed to use with $ROWS";
return false;
}
Columns.Add(&With->GetLabel(), false);
}
bool hasError = false;
auto produce = Y(ListCall ? "SqlProcess" : "Apply", With);
TMaybe<ui32> listPosIndex;
ui32 termIndex = 0;
for (auto& term: Terms) {
if (ListCall) {
if (auto atom = dynamic_cast<TAstAtomNode*>(term.Get())) {
if (atom->GetContent() == "inputRowsList") {
listPosIndex = termIndex;
}
}
}
++termIndex;
if (!term->GetLabel().empty()) {
ctx.Error(term->GetPos()) << "Labels are not allowed for PROCESS terms";
hasError = true;
continue;
}
if (!term->Init(ctx, processSource)) {
hasError = true;
continue;
}
produce = L(produce, term);
}
if (ListCall) {
produce = L(produce, Q(ToString(*listPosIndex)));
}
if (!produce->Init(ctx, src)) {
hasError = true;
}
produce = ctx.GroundBlockShortcutsForExpr(produce);
TVector<TNodePtr>(1, produce).swap(Terms);
src->FinishColumns();
if (hasError) {
return false;
}
return true;
}
TNodePtr Build(TContext& ctx) override {
auto input = Source->Build(ctx);
if (!input) {
return nullptr;
}
if (!With) {
return input;
}
TString inputLabel = ListCall ? "inputRowsList" : "core";
auto block(Y(Y("let", inputLabel, input)));
auto filter = Source->BuildFilter(ctx, inputLabel, FiltersGround);
if (filter) {
block = L(block, Y("let", inputLabel, filter));
}
if (ListCall) {
block = L(block, Y("let", "core", Terms[0]));
} else {
auto terms = BuildColumnsTerms(ctx);
block = L(block, Y("let", "core", Y(ctx.UseUnordered(*this) ? "OrderedFlatMap" : "FlatMap", "core", BuildLambda(Pos, Y("row"), terms, "res"))));
}
block = L(block, Y("let", "core", Y("AutoDemux", Y("EnsurePersistable", "core"))));
return Y("block", Q(L(block, Y("return", "core"))));
}
bool IsSelect() const override {
return false;
}
bool IsStream() const override {
return Stream;
}
TWriteSettings GetWriteSettings() const override {
return Settings;
}
TNodePtr DoClone() const final {
return new TProcessSource(Pos, Source->CloneSource(), SafeClone(With),
CloneContainer(Terms), ListCall, Stream, Settings);
}
private:
TNodePtr BuildColumnsTerms(TContext& ctx) {
Y_UNUSED(ctx);
TNodePtr terms;
Y_DEBUG_ABORT_UNLESS(Terms.size() == 1);
if (Columns.All) {
terms = Y(Y("let", "res", Y("ToSequence", Terms.front())));
} else {
Y_DEBUG_ABORT_UNLESS(Columns.List.size() == Terms.size());
terms = TermsGround ? TermsGround : Y();
terms = L(terms, Y("let", "res",
L(Y("AsStruct"), Q(Y(BuildQuotedAtom(Pos, Columns.List.front()), Terms.front())))));
terms = L(terms, Y("let", "res", Y("Just", "res")));
}
return terms;
}
private:
TSourcePtr Source;
TNodePtr With;
TNodePtr FiltersGround;
TNodePtr TermsGround;
TVector<TNodePtr> Terms;
const bool ListCall;
const bool Stream;
const TWriteSettings Settings;
};
TSourcePtr BuildProcess(
TPosition pos,
TSourcePtr source,
TNodePtr with,
TVector<TNodePtr>&& terms,
bool listCall,
bool stream,
const TWriteSettings& settings
) {
return new TProcessSource(pos, std::move(source), with, std::move(terms), listCall, stream, settings);
}
class TNestedProxySource: public IProxySource {
public:
TNestedProxySource(TPosition pos, const TVector<TNodePtr>& groupBy, TSourcePtr source)
: IProxySource(pos, source.Get())
, CompositeSelect(nullptr)
, Holder(std::move(source))
, GroupBy(groupBy)
{}
TNestedProxySource(TCompositeSelect* compositeSelect, const TVector<TNodePtr>& groupBy)
: IProxySource(compositeSelect->GetPos(), compositeSelect->RealSource())
, CompositeSelect(compositeSelect)
, GroupBy(groupBy)
{}
bool DoInit(TContext& ctx, ISource* src) override {
return Source->Init(ctx, src);
}
TNodePtr Build(TContext& ctx) override {
return CompositeSelect ? BuildAtom(Pos, "composite", TNodeFlags::Default) : Source->Build(ctx);
}
bool InitFilters(TContext& ctx) override {
return CompositeSelect ? true : Source->InitFilters(ctx);
}
TNodePtr BuildFilter(TContext& ctx, const TString& label, const TNodePtr& groundNode) override {
return CompositeSelect ? nullptr : Source->BuildFilter(ctx, label, groundNode);
}
bool IsCompositeSource() const override {
return true;
}
ISource* GetCompositeSource() override {
return CompositeSelect;
}
bool CalculateGroupingHint(TContext& ctx, const TVector<TString>& columns, ui64& hint) const override {
Y_UNUSED(ctx);
hint = 0;
if (GroupByColumns.empty()) {
for (const auto& groupByNode: GroupBy) {
auto namePtr = groupByNode->GetColumnName();
YQL_ENSURE(namePtr);
GroupByColumns.insert(*namePtr);
}
}
for (const auto& column: columns) {
hint <<= 1;
if (!GroupByColumns.contains(column)) {
hint += 1;
}
}
return true;
}
void FinishColumns() override {
Source->FinishColumns();
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
return Source->AddColumn(ctx, column);
}
TPtr DoClone() const final {
return Holder.Get() ? new TNestedProxySource(Pos, CloneContainer(GroupBy), Holder->CloneSource()) :
new TNestedProxySource(CompositeSelect, CloneContainer(GroupBy));
}
private:
TCompositeSelect* CompositeSelect;
TSourcePtr Holder;
TVector<TNodePtr> GroupBy;
mutable TSet<TString> GroupByColumns;
};
TSourcePtr BuildSelectCore(
TContext& ctx,
TPosition pos,
TSourcePtr source,
const TVector<TNodePtr>& groupByExpr,
const TVector<TNodePtr>& groupBy,
const TVector<TSortSpecificationPtr>& orderBy,
TNodePtr having,
TWinSpecs&& winSpecs,
THoppingWindowSpecPtr hoppingWindowSpec,
TVector<TNodePtr>&& terms,
bool distinct,
TVector<TNodePtr>&& without,
bool stream,
const TWriteSettings& settings
) {
if (groupBy.empty() || !groupBy.front()->ContentListPtr()) {
return new TSelectCore(pos, std::move(source), groupByExpr, groupBy, orderBy, having, winSpecs, hoppingWindowSpec, terms, distinct, without, stream, settings);
}
if (groupBy.size() == 1) {
/// actualy no big idea to use grouping function in this case (result allways 0)
auto contentPtr = groupBy.front()->ContentListPtr();
TSourcePtr proxySource = new TNestedProxySource(pos, *contentPtr, std::move(source));
return BuildSelectCore(ctx, pos, std::move(proxySource), groupByExpr, *contentPtr, orderBy, having, std::move(winSpecs),
hoppingWindowSpec, std::move(terms), distinct, std::move(without), stream, settings);
}
/// \todo some smart merge logic, generalize common part of grouping (expr, flatten, etc)?
TIntrusivePtr<TCompositeSelect> compositeSelect = new TCompositeSelect(pos, std::move(source), settings);
size_t totalGroups = 0;
TVector<TSourcePtr> subselects;
TSet<TString> groupingCols;
for (auto& grouping: groupBy) {
auto contentPtr = grouping->ContentListPtr();
TVector<TNodePtr> cache(1, nullptr);
if (!contentPtr) {
cache[0] = grouping;
contentPtr = &cache;
}
for (const auto& elem: *contentPtr) {
auto namePtr = elem->GetColumnName();
if (namePtr && !namePtr->empty()) {
groupingCols.insert(*namePtr);
}
}
TSourcePtr proxySource = new TNestedProxySource(compositeSelect.Get(), *contentPtr);
if (!subselects.empty()) {
/// clone terms for others usage
TVector<TNodePtr> termsCopy;
for (const auto& term: terms) {
termsCopy.emplace_back(term->Clone());
}
std::swap(terms, termsCopy);
}
totalGroups += contentPtr->size();
TSelectCore* selectCore = new TSelectCore(pos, std::move(proxySource), CloneContainer(groupByExpr),
*contentPtr, orderBy, SafeClone(having), winSpecs, hoppingWindowSpec, terms, distinct, without, stream, settings);
subselects.emplace_back(selectCore);
}
if (totalGroups > ctx.PragmaGroupByLimit) {
ctx.Error(pos) << "Unable to GROUP BY more than " << ctx.PragmaGroupByLimit << " groups, you try use " << totalGroups << " groups";
return nullptr;
}
compositeSelect->SetSubselects(std::move(subselects), std::move(groupingCols));
return compositeSelect;
}
class TUnionAll: public IRealSource {
public:
TUnionAll(TPosition pos, TVector<TSourcePtr>&& sources)
: IRealSource(pos)
, Sources(std::move(sources))
{
}
const TColumns* GetColumns() const override {
return IRealSource::GetColumns();
}
void GetInputTables(TTableList& tableList) const override {
for (auto& x : Sources) {
x->GetInputTables(tableList);
}
ISource::GetInputTables(tableList);
}
bool DoInit(TContext& ctx, ISource* src) override {
for (auto& s: Sources) {
s->UseAsInner();
if (!s->Init(ctx, src)) {
return false;
}
auto c = s->GetColumns();
Y_DEBUG_ABORT_UNLESS(c);
Columns.Merge(*c);
}
return true;
}
TNodePtr Build(TContext& ctx) override {
auto res = Y("UnionAll");
for (auto& s: Sources) {
auto input = s->Build(ctx);
if (!input) {
return nullptr;
}
res->Add(input);
}
return res;
}
bool IsStream() const override {
for (auto& s: Sources) {
if (!s->IsStream()) {
return false;
}
}
return true;
}
TNodePtr DoClone() const final {
return MakeIntrusive<TUnionAll>(Pos, CloneContainer(Sources));
}
private:
TVector<TSourcePtr> Sources;
};
TSourcePtr BuildUnionAll(TPosition pos, TVector<TSourcePtr>&& sources) {
return new TUnionAll(pos, std::move(sources));
}
class TOverWindowSource: public IProxySource {
public:
TOverWindowSource(TPosition pos, const TString& windowName, ISource* origSource)
: IProxySource(pos, origSource)
, WindowName(windowName)
{
Source->SetLabel(origSource->GetLabel());
}
TString MakeLocalName(const TString& name) override {
return Source->MakeLocalName(name);
}
void AddTmpWindowColumn(const TString& column) override {
return Source->AddTmpWindowColumn(column);
}
bool AddAggregation(TContext& ctx, TAggregationPtr aggr) override {
if (aggr->IsOverWindow()) {
return Source->AddAggregationOverWindow(ctx, WindowName, aggr);
}
return Source->AddAggregation(ctx, aggr);
}
bool AddFuncOverWindow(TContext& ctx, TNodePtr expr) override {
return Source->AddFuncOverWindow(ctx, WindowName, expr);
}
bool IsOverWindowSource() const override {
return true;
}
TMaybe<bool> AddColumn(TContext& ctx, TColumnNode& column) override {
return Source->AddColumn(ctx, column);
}
TNodePtr Build(TContext& ctx) override {
Y_UNUSED(ctx);
Y_ABORT("Unexpected call");
}
const TString* GetWindowName() const override {
return &WindowName;
}
TWindowSpecificationPtr FindWindowSpecification(TContext& ctx, const TString& windowName) const override {
return Source->FindWindowSpecification(ctx, windowName);
}
TNodePtr DoClone() const final {
return {};
}
private:
const TString WindowName;
};
TSourcePtr BuildOverWindowSource(TPosition pos, const TString& windowName, ISource* origSource) {
return new TOverWindowSource(pos, windowName, origSource);
}
class TSkipTakeNode final: public TAstListNode {
public:
TSkipTakeNode(TPosition pos, const TNodePtr& skip, const TNodePtr& take)
: TAstListNode(pos)
{
TNodePtr select(AstNode("select"));
if (skip) {
select = Y("Skip", select, skip);
}
Add("let", "select", Y("Take", select, take));
}
TPtr DoClone() const final {
return {};
}
};
TNodePtr BuildSkipTake(TPosition pos, const TNodePtr& skip, const TNodePtr& take) {
return new TSkipTakeNode(pos, skip, take);
}
class TSelect: public IProxySource {
public:
TSelect(TPosition pos, TSourcePtr source, TNodePtr skipTake)
: IProxySource(pos, source.Get())
, Source(std::move(source))
, SkipTake(skipTake)
{}
bool DoInit(TContext& ctx, ISource* src) override {
Source->SetLabel(Label);
if (AsInner) {
Source->UseAsInner();
}
if (!Source->Init(ctx, src)) {
return false;
}
src = Source.Get();
if (SkipTake) {
ctx.PushBlockShortcuts();
FakeSource.Reset(new TFakeSource(SkipTake->GetPos()));
if (!SkipTake->Init(ctx, FakeSource.Get())) {
return false;
}
SkipTakeGround = ctx.GroundBlockShortcuts(ctx.Pos());
}
return true;
}
TNodePtr Build(TContext& ctx) override {
auto input = Source->Build(ctx);
if (!input) {
return nullptr;
}
const auto label = "select";
auto block(Y(Y("let", label, input)));
auto sortNode = Source->BuildSort(ctx, label);
if (sortNode) {
if (AsInner && !SkipTake) {
ctx.Warning(sortNode->GetPos(), TIssuesIds::YQL_ORDER_BY_WITHOUT_LIMIT_IN_SUBQUERY) << "ORDER BY without LIMIT in subquery will be ignored";
} else {
block = L(block, sortNode);
}
}
if (SkipTake) {
if (SkipTakeGround) {
block = L(block, SkipTake->Y("let", "select", SkipTake->Y("block", SkipTake->Q(
SkipTake->L(SkipTake->L(SkipTakeGround, SkipTake), Y("return", "select"))))));
} else {
block = L(block, SkipTake);
}
}
block = L(block, Y("return", label));
return Y("block", Q(block));
}
bool IsSelect() const override {
return Source->IsSelect();
}
TPtr DoClone() const final {
return MakeIntrusive<TSelect>(Pos, Source->CloneSource(), SafeClone(SkipTake));
}
protected:
TSourcePtr Source;
TNodePtr SkipTake;
TNodePtr SkipTakeGround;
THolder<TFakeSource> FakeSource;
};
TSourcePtr BuildSelect(TPosition pos, TSourcePtr source, TNodePtr skipTake) {
return new TSelect(pos, std::move(source), skipTake);
}
class TSelectResultNode final: public TAstListNode {
public:
TSelectResultNode(TPosition pos, TSourcePtr source, bool writeResult, bool inSubquery)
: TAstListNode(pos)
, Source(std::move(source))
, WriteResult(writeResult)
, InSubquery(inSubquery)
{
YQL_ENSURE(Source, "Invalid source node");
FakeSource = BuildFakeSource(pos);
}
bool IsSelect() const override {
return true;
}
bool DoInit(TContext& ctx, ISource* src) override {
if (!Source->Init(ctx, src)) {
return false;
}
src = Source.Get();
TTableList tableList;
Source->GetInputTables(tableList);
TNodePtr node(BuildInputTables(Pos, tableList, InSubquery));
if (!node->Init(ctx, src)) {
return false;
}
TSet<TString> clusters;
for (auto& it: tableList) {
clusters.insert(it.Cluster);
}
auto writeSettings = src->GetWriteSettings();
bool asRef = ctx.PragmaRefSelect;
bool asAutoRef = true;
if (ctx.PragmaSampleSelect) {
asRef = false;
asAutoRef = false;
}
auto settings = Y(Q(Y(Q("type"))));
if (writeSettings.Discard) {
settings = L(settings, Q(Y(Q("discard"))));
}
if (!writeSettings.Label.Empty()) {
auto labelNode = writeSettings.Label.Build();
if (!writeSettings.Label.GetLiteral()) {
labelNode = Y("EvaluateAtom", labelNode);
}
ctx.PushBlockShortcuts();
if (!labelNode->Init(ctx, FakeSource.Get())) {
return false;
}
labelNode = ctx.GroundBlockShortcutsForExpr(labelNode);
settings = L(settings, Q(Y(Q("label"), labelNode)));
}
if (asRef) {
settings = L(settings, Q(Y(Q("ref"))));
} else if (asAutoRef) {
settings = L(settings, Q(Y(Q("autoref"))));
}
auto columns = Source->GetColumns();
if (columns && !columns->All && !(columns->QualifiedAll && ctx.SimpleColumns)) {
auto list = Y();
for (auto& c: columns->List) {
if (c.EndsWith('*')) {
list = L(list, Q(Y(Q("prefix"), BuildQuotedAtom(Pos, c.substr(0, c.size() - 1)))));
} else {
list = L(list, BuildQuotedAtom(Pos, c));
}
}
settings = L(settings, Q(Y(Q("columns"), Q(list))));
}
if (ctx.ResultRowsLimit > 0) {
settings = L(settings, Q(Y(Q("take"), Q(ToString(ctx.ResultRowsLimit)))));
}
auto output = Source->Build(ctx);
if (!output) {
return false;
}
node = L(node, Y("let", "output", output));
if (WriteResult) {
if (!Source->IsOrdered() && ctx.UseUnordered(*Source)) {
node = L(node, Y("let", "output", Y("Unordered", "output")));
}
auto writeResult(BuildWriteResult(Pos, "output", settings, clusters));
if (!writeResult->Init(ctx, src)) {
return false;
}
node = L(node, Y("let", "world", writeResult));
node = L(node, Y("return", "world"));
} else {
node = L(node, Y("return", "output"));
}
Add("block", Q(node));
return true;
}
TPtr DoClone() const final {
return {};
}
protected:
TSourcePtr Source;
const bool WriteResult;
const bool InSubquery;
TSourcePtr FakeSource;
};
TNodePtr BuildSelectResult(TPosition pos, TSourcePtr source, bool writeResult, bool inSubquery) {
return new TSelectResultNode(pos, std::move(source), writeResult, inSubquery);
}
} // namespace NSQLTranslationV0
|