polyglot-sql 0.3.3

SQL parsing, validating, formatting, and dialect translation library
Documentation
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
//! SQLGlot Compatibility Tests
//!
//! These tests are ported from sqlglot's test suite to ensure compatibility.
//! They cover parsing, generation, and transpilation between dialects.

use polyglot_sql::dialects::{Dialect, DialectType};
use polyglot_sql::generator::{Generator, UnsupportedLevel};
use polyglot_sql::parser::Parser;

/// Helper function to test roundtrip: parse SQL and regenerate it
fn roundtrip(sql: &str) -> String {
    let ast = Parser::parse_sql(sql).expect(&format!("Failed to parse: {}", sql));
    Generator::sql(&ast[0]).expect("Failed to generate SQL")
}

/// Helper function to test transpilation between dialects
fn transpile(sql: &str, from: DialectType, to: DialectType) -> String {
    let source_dialect = Dialect::get(from);
    let result = source_dialect.transpile(sql, to).expect(&format!(
        "Failed to transpile: {} from {:?} to {:?}",
        sql, from, to
    ));
    result[0].clone()
}

// ============================================================================
// Identity Tests - SQL should roundtrip identically
// Ported from sqlglot/tests/fixtures/identity.sql
// ============================================================================

#[cfg(test)]
mod identity_tests {
    use super::*;

    #[test]
    fn test_literals() {
        assert_eq!(roundtrip("SELECT 1"), "SELECT 1");
        assert_eq!(roundtrip("SELECT 1.0"), "SELECT 1.0");
        assert_eq!(roundtrip("SELECT 1E2"), "SELECT 1E2");
        assert_eq!(roundtrip("SELECT 'x'"), "SELECT 'x'");
        assert_eq!(roundtrip("SELECT ''"), "SELECT ''");
    }

    #[test]
    fn test_arithmetic() {
        assert_eq!(roundtrip("SELECT 1 + 2"), "SELECT 1 + 2");
        assert_eq!(roundtrip("SELECT 1 - 2"), "SELECT 1 - 2");
        assert_eq!(roundtrip("SELECT 1 * 2"), "SELECT 1 * 2");
        assert_eq!(roundtrip("SELECT 1 / 2"), "SELECT 1 / 2");
        assert_eq!(roundtrip("SELECT 1 % 2"), "SELECT 1 % 2");
        assert_eq!(
            roundtrip("SELECT (1 * 2) / (3 - 5)"),
            "SELECT (1 * 2) / (3 - 5)"
        );
    }

    #[test]
    fn test_comparison() {
        assert_eq!(roundtrip("SELECT x < 1"), "SELECT x < 1");
        assert_eq!(roundtrip("SELECT x <= 1"), "SELECT x <= 1");
        assert_eq!(roundtrip("SELECT x > 1"), "SELECT x > 1");
        assert_eq!(roundtrip("SELECT x >= 1"), "SELECT x >= 1");
        assert_eq!(roundtrip("SELECT x = 1"), "SELECT x = 1");
        assert_eq!(roundtrip("SELECT x <> 1"), "SELECT x <> 1");
    }

    #[test]
    fn test_boolean_logic() {
        assert_eq!(roundtrip("SELECT x = y OR x > 1"), "SELECT x = y OR x > 1");
        assert_eq!(
            roundtrip("SELECT x = 1 AND y = 2"),
            "SELECT x = 1 AND y = 2"
        );
        assert_eq!(roundtrip("SELECT NOT x"), "SELECT NOT x");
    }

    #[test]
    fn test_bitwise() {
        assert_eq!(roundtrip("SELECT x & 1"), "SELECT x & 1");
        assert_eq!(roundtrip("SELECT x | 1"), "SELECT x | 1");
        assert_eq!(roundtrip("SELECT x ^ 1"), "SELECT x ^ 1");
        assert_eq!(roundtrip("SELECT ~x"), "SELECT ~x");
    }

    #[test]
    fn test_column_access() {
        assert_eq!(roundtrip("SELECT a.b"), "SELECT a.b");
        assert_eq!(roundtrip("SELECT a.b.c"), "SELECT a.b.c");
        assert_eq!(roundtrip("SELECT a.b.c.d"), "SELECT a.b.c.d");
    }

    #[test]
    fn test_subscript() {
        assert_eq!(roundtrip("SELECT a[0]"), "SELECT a[0]");
        assert_eq!(roundtrip("SELECT a[0].b"), "SELECT a[0].b");
    }

    #[test]
    fn test_in_expression() {
        assert_eq!(roundtrip("SELECT x IN (1, 2, 3)"), "SELECT x IN (1, 2, 3)");
        assert_eq!(roundtrip("SELECT x IN (-1, 1)"), "SELECT x IN (-1, 1)");
    }

    #[test]
    fn test_between() {
        assert_eq!(
            roundtrip("SELECT x BETWEEN 1 AND 10"),
            "SELECT x BETWEEN 1 AND 10"
        );
        assert_eq!(
            roundtrip("SELECT x BETWEEN -1 AND 1"),
            "SELECT x BETWEEN -1 AND 1"
        );
    }

    #[test]
    fn test_is_null() {
        assert_eq!(roundtrip("SELECT x IS NULL"), "SELECT x IS NULL");
        assert_eq!(roundtrip("SELECT x IS NOT NULL"), "SELECT NOT x IS NULL");
    }

    #[test]
    fn test_like() {
        assert_eq!(
            roundtrip("SELECT x LIKE '%test%'"),
            "SELECT x LIKE '%test%'"
        );
    }

    #[test]
    fn test_case() {
        assert_eq!(
            roundtrip("SELECT CASE WHEN x = 1 THEN 'a' ELSE 'b' END"),
            "SELECT CASE WHEN x = 1 THEN 'a' ELSE 'b' END"
        );
        assert_eq!(
            roundtrip("SELECT CASE x WHEN 1 THEN 'a' WHEN 2 THEN 'b' END"),
            "SELECT CASE x WHEN 1 THEN 'a' WHEN 2 THEN 'b' END"
        );
    }

    #[test]
    fn test_functions() {
        assert_eq!(roundtrip("SELECT COUNT(*)"), "SELECT COUNT(*)");
        assert_eq!(roundtrip("SELECT SUM(x)"), "SELECT SUM(x)");
        assert_eq!(roundtrip("SELECT AVG(x)"), "SELECT AVG(x)");
        assert_eq!(roundtrip("SELECT MIN(x)"), "SELECT MIN(x)");
        assert_eq!(roundtrip("SELECT MAX(x)"), "SELECT MAX(x)");
        assert_eq!(
            roundtrip("SELECT COALESCE(a, b, c)"),
            "SELECT COALESCE(a, b, c)"
        );
        assert_eq!(roundtrip("SELECT GREATEST(x)"), "SELECT GREATEST(x)");
        assert_eq!(roundtrip("SELECT LEAST(y)"), "SELECT LEAST(y)");
    }

    #[test]
    fn test_window_functions() {
        assert_eq!(
            roundtrip("SELECT ROW_NUMBER() OVER (PARTITION BY x ORDER BY y)"),
            "SELECT ROW_NUMBER() OVER (PARTITION BY x ORDER BY y)"
        );
        assert_eq!(
            roundtrip(
                "SELECT SUM(x) OVER (ORDER BY y ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)"
            ),
            "SELECT SUM(x) OVER (ORDER BY y ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW)"
        );
    }

    #[test]
    fn test_aggregate_with_filter() {
        assert_eq!(
            roundtrip("SELECT COUNT(*) FILTER (WHERE x > 0)"),
            "SELECT COUNT(*) FILTER(WHERE x > 0)"
        );
    }

    #[test]
    fn test_subquery() {
        assert_eq!(
            roundtrip("SELECT * FROM (SELECT 1) AS t"),
            "SELECT * FROM (SELECT 1) AS t"
        );
        assert_eq!(
            roundtrip("SELECT * FROM t WHERE x IN (SELECT y FROM s)"),
            "SELECT * FROM t WHERE x IN (SELECT y FROM s)"
        );
    }

    #[test]
    fn test_union() {
        assert_eq!(
            roundtrip("SELECT 1 UNION SELECT 2"),
            "SELECT 1 UNION SELECT 2"
        );
        assert_eq!(
            roundtrip("SELECT 1 UNION ALL SELECT 2"),
            "SELECT 1 UNION ALL SELECT 2"
        );
    }

    #[test]
    fn test_join() {
        assert_eq!(
            roundtrip("SELECT * FROM a JOIN b ON a.id = b.id"),
            "SELECT * FROM a JOIN b ON a.id = b.id"
        );
        assert_eq!(
            roundtrip("SELECT * FROM a LEFT JOIN b ON a.id = b.id"),
            "SELECT * FROM a LEFT JOIN b ON a.id = b.id"
        );
        assert_eq!(
            roundtrip("SELECT * FROM a RIGHT JOIN b ON a.id = b.id"),
            "SELECT * FROM a RIGHT JOIN b ON a.id = b.id"
        );
        assert_eq!(
            roundtrip("SELECT * FROM a FULL JOIN b ON a.id = b.id"),
            "SELECT * FROM a FULL JOIN b ON a.id = b.id"
        );
        assert_eq!(
            roundtrip("SELECT * FROM a CROSS JOIN b"),
            "SELECT * FROM a CROSS JOIN b"
        );
    }

    #[test]
    fn test_cte() {
        assert_eq!(
            roundtrip("WITH cte AS (SELECT 1) SELECT * FROM cte"),
            "WITH cte AS (SELECT 1) SELECT * FROM cte"
        );
    }
}

// ============================================================================
// DDL Identity Tests
// Ported from sqlglot/tests/dialects/test_mysql.py and others
// ============================================================================

#[cfg(test)]
mod ddl_tests {
    use super::*;

    #[test]
    fn test_create_table_basic() {
        assert_eq!(
            roundtrip("CREATE TABLE t (id INT)"),
            "CREATE TABLE t (id INT)"
        );
        assert_eq!(
            roundtrip("CREATE TABLE t (id INT, name VARCHAR(100))"),
            "CREATE TABLE t (id INT, name VARCHAR(100))"
        );
    }

    #[test]
    fn test_create_table_constraints() {
        assert_eq!(
            roundtrip("CREATE TABLE t (id INT PRIMARY KEY)"),
            "CREATE TABLE t (id INT PRIMARY KEY)"
        );
        assert_eq!(
            roundtrip("CREATE TABLE t (id INT NOT NULL)"),
            "CREATE TABLE t (id INT NOT NULL)"
        );
        assert_eq!(
            roundtrip("CREATE TABLE t (id INT UNIQUE)"),
            "CREATE TABLE t (id INT UNIQUE)"
        );
    }

    #[test]
    fn test_create_table_if_not_exists() {
        assert_eq!(
            roundtrip("CREATE TABLE IF NOT EXISTS t (id INT)"),
            "CREATE TABLE IF NOT EXISTS t (id INT)"
        );
    }

    #[test]
    fn test_create_temporary_table() {
        assert_eq!(
            roundtrip("CREATE TEMPORARY TABLE t (id INT)"),
            "CREATE TEMPORARY TABLE t (id INT)"
        );
    }

    #[test]
    fn test_drop_table() {
        assert_eq!(roundtrip("DROP TABLE t"), "DROP TABLE t");
        assert_eq!(
            roundtrip("DROP TABLE IF EXISTS t"),
            "DROP TABLE IF EXISTS t"
        );
        assert_eq!(
            roundtrip("DROP TABLE IF EXISTS t CASCADE"),
            "DROP TABLE IF EXISTS t CASCADE"
        );
    }

    #[test]
    fn test_alter_table() {
        assert_eq!(
            roundtrip("ALTER TABLE t ADD COLUMN x INT"),
            "ALTER TABLE t ADD COLUMN x INT"
        );
        assert_eq!(
            roundtrip("ALTER TABLE t DROP COLUMN x"),
            "ALTER TABLE t DROP COLUMN x"
        );
    }

    #[test]
    fn test_create_index() {
        assert_eq!(
            roundtrip("CREATE INDEX idx ON t (col)"),
            "CREATE INDEX idx ON t(col)"
        );
        assert_eq!(
            roundtrip("CREATE UNIQUE INDEX idx ON t (col)"),
            "CREATE UNIQUE INDEX idx ON t(col)"
        );
    }

    #[test]
    fn test_drop_index() {
        assert_eq!(roundtrip("DROP INDEX idx"), "DROP INDEX idx");
        assert_eq!(
            roundtrip("DROP INDEX IF EXISTS idx"),
            "DROP INDEX IF EXISTS idx"
        );
    }

    #[test]
    fn test_create_view() {
        assert_eq!(
            roundtrip("CREATE VIEW v AS SELECT * FROM t"),
            "CREATE VIEW v AS SELECT * FROM t"
        );
        assert_eq!(
            roundtrip("CREATE OR REPLACE VIEW v AS SELECT * FROM t"),
            "CREATE OR REPLACE VIEW v AS SELECT * FROM t"
        );
    }

    #[test]
    fn test_drop_view() {
        assert_eq!(roundtrip("DROP VIEW v"), "DROP VIEW v");
        assert_eq!(roundtrip("DROP VIEW IF EXISTS v"), "DROP VIEW IF EXISTS v");
    }

    #[test]
    fn test_truncate() {
        assert_eq!(roundtrip("TRUNCATE TABLE t"), "TRUNCATE TABLE t");
        assert_eq!(
            roundtrip("TRUNCATE TABLE t CASCADE"),
            "TRUNCATE TABLE t CASCADE"
        );
    }

    // Phase 4: Additional DDL tests

    #[test]
    fn test_create_schema() {
        assert_eq!(
            roundtrip("CREATE SCHEMA my_schema"),
            "CREATE SCHEMA my_schema"
        );
        assert_eq!(
            roundtrip("CREATE SCHEMA IF NOT EXISTS my_schema"),
            "CREATE SCHEMA IF NOT EXISTS my_schema"
        );
        assert_eq!(
            roundtrip("CREATE SCHEMA my_schema AUTHORIZATION admin"),
            "CREATE SCHEMA my_schema AUTHORIZATION admin"
        );
    }

    #[test]
    fn test_drop_schema() {
        assert_eq!(roundtrip("DROP SCHEMA my_schema"), "DROP SCHEMA my_schema");
        assert_eq!(
            roundtrip("DROP SCHEMA IF EXISTS my_schema"),
            "DROP SCHEMA IF EXISTS my_schema"
        );
        assert_eq!(
            roundtrip("DROP SCHEMA IF EXISTS my_schema CASCADE"),
            "DROP SCHEMA IF EXISTS my_schema CASCADE"
        );
    }

    #[test]
    fn test_create_database() {
        assert_eq!(roundtrip("CREATE DATABASE mydb"), "CREATE DATABASE mydb");
        assert_eq!(
            roundtrip("CREATE DATABASE IF NOT EXISTS mydb"),
            "CREATE DATABASE IF NOT EXISTS mydb"
        );
    }

    #[test]
    fn test_drop_database() {
        assert_eq!(roundtrip("DROP DATABASE mydb"), "DROP DATABASE mydb");
        assert_eq!(
            roundtrip("DROP DATABASE IF EXISTS mydb"),
            "DROP DATABASE IF EXISTS mydb"
        );
    }

    #[test]
    fn test_create_sequence() {
        assert_eq!(
            roundtrip("CREATE SEQUENCE my_seq"),
            "CREATE SEQUENCE my_seq"
        );
        assert_eq!(
            roundtrip("CREATE SEQUENCE IF NOT EXISTS my_seq"),
            "CREATE SEQUENCE IF NOT EXISTS my_seq"
        );
        assert_eq!(
            roundtrip("CREATE SEQUENCE my_seq INCREMENT BY 1"),
            "CREATE SEQUENCE my_seq INCREMENT BY 1"
        );
        assert_eq!(
            roundtrip("CREATE SEQUENCE my_seq START WITH 100"),
            "CREATE SEQUENCE my_seq START WITH 100"
        );
        assert_eq!(
            roundtrip("CREATE SEQUENCE my_seq MINVALUE 1 MAXVALUE 1000"),
            "CREATE SEQUENCE my_seq MINVALUE 1 MAXVALUE 1000"
        );
        assert_eq!(
            roundtrip("CREATE SEQUENCE my_seq CYCLE"),
            "CREATE SEQUENCE my_seq CYCLE"
        );
    }

    #[test]
    fn test_drop_sequence() {
        assert_eq!(roundtrip("DROP SEQUENCE my_seq"), "DROP SEQUENCE my_seq");
        assert_eq!(
            roundtrip("DROP SEQUENCE IF EXISTS my_seq CASCADE"),
            "DROP SEQUENCE IF EXISTS my_seq CASCADE"
        );
    }

    #[test]
    fn test_alter_sequence() {
        assert_eq!(
            roundtrip("ALTER SEQUENCE my_seq INCREMENT BY 5"),
            "ALTER SEQUENCE my_seq INCREMENT BY 5"
        );
        assert_eq!(
            roundtrip("ALTER SEQUENCE my_seq RESTART"),
            "ALTER SEQUENCE my_seq RESTART"
        );
    }

    #[test]
    fn test_create_type_enum() {
        assert_eq!(
            roundtrip("CREATE TYPE status AS ENUM ('active', 'inactive')"),
            "CREATE TYPE status AS ENUM ('active', 'inactive')"
        );
    }

    #[test]
    fn test_create_type_composite() {
        assert_eq!(
            roundtrip("CREATE TYPE address AS (street VARCHAR, city VARCHAR)"),
            "CREATE TYPE address AS (street VARCHAR, city VARCHAR)"
        );
    }

    #[test]
    fn test_drop_type() {
        assert_eq!(roundtrip("DROP TYPE my_type"), "DROP TYPE my_type");
        assert_eq!(
            roundtrip("DROP TYPE IF EXISTS my_type CASCADE"),
            "DROP TYPE IF EXISTS my_type CASCADE"
        );
    }

    #[test]
    fn test_alter_view() {
        assert_eq!(
            roundtrip("ALTER VIEW my_view RENAME TO new_view"),
            "ALTER VIEW my_view RENAME TO new_view"
        );
    }

    #[test]
    fn test_alter_index() {
        assert_eq!(
            roundtrip("ALTER INDEX my_idx RENAME TO new_idx"),
            "ALTER INDEX my_idx RENAME TO new_idx"
        );
    }
}

// ============================================================================
// Transpilation Tests
// Ported from sqlglot's dialect-specific tests
// ============================================================================

#[cfg(test)]
mod transpile_tests {
    use super::*;

    // NVL/IFNULL/COALESCE conversions
    #[test]
    fn test_nvl_to_ifnull_mysql() {
        // NVL -> IFNULL in MySQL
        assert_eq!(
            transpile("SELECT NVL(a, b)", DialectType::Generic, DialectType::MySQL),
            "SELECT IFNULL(a, b)"
        );
    }

    #[test]
    fn test_nvl_to_coalesce_postgres() {
        // NVL -> COALESCE in PostgreSQL
        assert_eq!(
            transpile(
                "SELECT NVL(a, b)",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT COALESCE(a, b)"
        );
    }

    #[test]
    fn test_ifnull_to_coalesce_postgres() {
        // IFNULL -> COALESCE in PostgreSQL
        assert_eq!(
            transpile(
                "SELECT IFNULL(a, b)",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT COALESCE(a, b)"
        );
    }

    #[test]
    fn test_coalesce_preserved_mysql() {
        // Pinned sqlglot baseline preserves COALESCE for MySQL
        assert_eq!(
            transpile(
                "SELECT COALESCE(a, b)",
                DialectType::Generic,
                DialectType::MySQL
            ),
            "SELECT COALESCE(a, b)"
        );
    }

    #[test]
    fn test_group_concat_to_string_agg_postgres() {
        // GROUP_CONCAT -> STRING_AGG with explicit default separator in PostgreSQL
        assert_eq!(
            transpile(
                "SELECT GROUP_CONCAT(name)",
                DialectType::MySQL,
                DialectType::PostgreSQL
            ),
            "SELECT STRING_AGG(name, ',')"
        );
    }

    #[test]
    fn test_array_agg_to_group_concat_mysql() {
        // ARRAY_AGG -> GROUP_CONCAT in MySQL
        assert_eq!(
            transpile(
                "SELECT ARRAY_AGG(name)",
                DialectType::Generic,
                DialectType::MySQL
            ),
            "SELECT GROUP_CONCAT(name)"
        );
    }

    // Substring function conversions
    #[test]
    fn test_substr_to_substring_postgres() {
        // SUBSTR -> SUBSTRING in PostgreSQL
        assert_eq!(
            transpile(
                "SELECT SUBSTR(name, 1, 5)",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT SUBSTRING(name FROM 1 FOR 5)"
        );
    }

    // Basic transpilation - should preserve SQL structure
    #[test]
    fn test_basic_select_transpile() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT a, b FROM t"
        );
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::MySQL
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_select_with_where_transpile() {
        assert_eq!(
            transpile(
                "SELECT * FROM t WHERE x = 1",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT * FROM t WHERE x = 1"
        );
    }

    #[test]
    fn test_join_transpile() {
        assert_eq!(
            transpile(
                "SELECT * FROM a JOIN b ON a.id = b.id",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT * FROM a JOIN b ON a.id = b.id"
        );
    }
}

// ============================================================================
// DML Tests
// ============================================================================

#[cfg(test)]
mod dml_tests {
    use super::*;

    #[test]
    fn test_insert() {
        assert_eq!(
            roundtrip("INSERT INTO t (a, b) VALUES (1, 2)"),
            "INSERT INTO t (a, b) VALUES (1, 2)"
        );
        assert_eq!(
            roundtrip("INSERT INTO t (a, b) VALUES (1, 2), (3, 4)"),
            "INSERT INTO t (a, b) VALUES (1, 2), (3, 4)"
        );
    }

    #[test]
    fn test_update() {
        assert_eq!(roundtrip("UPDATE t SET a = 1"), "UPDATE t SET a = 1");
        assert_eq!(
            roundtrip("UPDATE t SET a = 1 WHERE b = 2"),
            "UPDATE t SET a = 1 WHERE b = 2"
        );
        assert_eq!(
            roundtrip("UPDATE t SET a = 1, b = 2 WHERE c = 3"),
            "UPDATE t SET a = 1, b = 2 WHERE c = 3"
        );
    }

    #[test]
    fn test_delete() {
        assert_eq!(roundtrip("DELETE FROM t"), "DELETE FROM t");
        assert_eq!(
            roundtrip("DELETE FROM t WHERE a = 1"),
            "DELETE FROM t WHERE a = 1"
        );
    }
}

// ============================================================================
// Complex Query Tests
// ============================================================================

#[cfg(test)]
mod complex_tests {
    use super::*;

    #[test]
    fn test_nested_subqueries() {
        assert_eq!(
            roundtrip("SELECT * FROM (SELECT * FROM (SELECT 1) AS a) AS b"),
            "SELECT * FROM (SELECT * FROM (SELECT 1) AS a) AS b"
        );
    }

    #[test]
    fn test_correlated_subquery() {
        assert_eq!(
            roundtrip("SELECT * FROM t WHERE x = (SELECT MAX(y) FROM s WHERE s.id = t.id)"),
            "SELECT * FROM t WHERE x = (SELECT MAX(y) FROM s WHERE s.id = t.id)"
        );
    }

    #[test]
    fn test_multiple_joins() {
        assert_eq!(
            roundtrip("SELECT * FROM a JOIN b ON a.id = b.id JOIN c ON b.id = c.id"),
            "SELECT * FROM a JOIN b ON a.id = b.id JOIN c ON b.id = c.id"
        );
    }

    #[test]
    fn test_group_by_having() {
        assert_eq!(
            roundtrip("SELECT a, COUNT(*) FROM t GROUP BY a HAVING COUNT(*) > 1"),
            "SELECT a, COUNT(*) FROM t GROUP BY a HAVING COUNT(*) > 1"
        );
    }

    #[test]
    fn test_order_by_limit() {
        assert_eq!(
            roundtrip("SELECT * FROM t ORDER BY a DESC LIMIT 10"),
            "SELECT * FROM t ORDER BY a DESC LIMIT 10"
        );
        // ASC is the default direction and may be omitted in output
        assert_eq!(
            roundtrip("SELECT * FROM t ORDER BY a, b DESC"),
            "SELECT * FROM t ORDER BY a, b DESC"
        );
    }

    #[test]
    fn test_distinct() {
        assert_eq!(
            roundtrip("SELECT DISTINCT a FROM t"),
            "SELECT DISTINCT a FROM t"
        );
    }

    #[test]
    fn test_exists() {
        assert_eq!(
            roundtrip("SELECT * FROM t WHERE EXISTS (SELECT 1 FROM s WHERE s.id = t.id)"),
            "SELECT * FROM t WHERE EXISTS(SELECT 1 FROM s WHERE s.id = t.id)"
        );
    }
}

// ============================================================================
// Phase 3 Tests - Parser Enhancements
// ============================================================================

#[cfg(test)]
mod phase3_tests {
    use super::*;

    #[test]
    fn test_top_clause() {
        assert_eq!(
            roundtrip("SELECT TOP (10) * FROM t"),
            "SELECT * FROM t LIMIT 10"
        );
        assert_eq!(
            roundtrip("SELECT TOP (10) PERCENT * FROM t"),
            "SELECT TOP (10) PERCENT * FROM t"
        );
        assert_eq!(
            roundtrip("SELECT TOP (10) WITH TIES * FROM t"),
            "SELECT TOP (10) WITH TIES * FROM t"
        );
    }

    #[test]
    fn test_distinct_on() {
        assert_eq!(
            roundtrip("SELECT DISTINCT ON (a) * FROM t"),
            "SELECT DISTINCT ON (a) * FROM t"
        );
        assert_eq!(
            roundtrip("SELECT DISTINCT ON (a, b) * FROM t"),
            "SELECT DISTINCT ON (a, b) * FROM t"
        );
    }

    #[test]
    fn test_qualify_clause() {
        assert_eq!(
            roundtrip("SELECT * FROM t QUALIFY ROW_NUMBER() OVER (PARTITION BY a ORDER BY b) = 1"),
            "SELECT * FROM t QUALIFY ROW_NUMBER() OVER (PARTITION BY a ORDER BY b) = 1"
        );
    }

    #[test]
    fn test_materialized_cte() {
        assert_eq!(
            roundtrip("WITH cte AS MATERIALIZED (SELECT 1) SELECT * FROM cte"),
            "WITH cte AS MATERIALIZED (SELECT 1) SELECT * FROM cte"
        );
        assert_eq!(
            roundtrip("WITH cte AS NOT MATERIALIZED (SELECT 1) SELECT * FROM cte"),
            "WITH cte AS NOT MATERIALIZED (SELECT 1) SELECT * FROM cte"
        );
    }

    #[test]
    fn test_pivot() {
        assert_eq!(
            roundtrip("SELECT * FROM t PIVOT (SUM(amount) FOR product IN ('A', 'B', 'C'))"),
            "SELECT * FROM t PIVOT(SUM(amount) FOR product IN ('A', 'B', 'C'))"
        );
    }

    #[test]
    fn test_unpivot() {
        assert_eq!(
            roundtrip("SELECT * FROM t UNPIVOT (value FOR name IN (a, b, c))"),
            "SELECT * FROM t UNPIVOT(value FOR name IN (a, b, c))"
        );
    }

    #[test]
    fn test_any_all_subquery() {
        assert_eq!(
            roundtrip("SELECT * FROM t WHERE x > ANY (SELECT y FROM s)"),
            "SELECT * FROM t WHERE x > ANY (SELECT y FROM s)"
        );
        assert_eq!(
            roundtrip("SELECT * FROM t WHERE x = ALL (SELECT y FROM s)"),
            "SELECT * FROM t WHERE x = ALL (SELECT y FROM s)"
        );
    }

    #[test]
    fn test_cross_apply() {
        assert_eq!(
            roundtrip("SELECT * FROM t CROSS APPLY s"),
            "SELECT * FROM t CROSS APPLY s"
        );
        assert_eq!(
            roundtrip("SELECT * FROM t OUTER APPLY s"),
            "SELECT * FROM t OUTER APPLY s"
        );
    }

    #[test]
    fn test_lateral_join() {
        assert_eq!(
            roundtrip("SELECT * FROM t LATERAL JOIN s ON t.id = s.id"),
            "SELECT * FROM t LATERAL JOIN s ON t.id = s.id"
        );
        assert_eq!(
            roundtrip("SELECT * FROM t LEFT LATERAL JOIN s ON t.id = s.id"),
            "SELECT * FROM t LEFT LATERAL JOIN s ON t.id = s.id"
        );
    }

    #[test]
    fn test_asof_join() {
        assert_eq!(
            roundtrip("SELECT * FROM t ASOF JOIN s ON t.id = s.id"),
            "SELECT * FROM t ASOF JOIN s ON t.id = s.id"
        );
    }

    #[test]
    fn test_lateral_view() {
        // Basic LATERAL VIEW EXPLODE
        assert_eq!(
            roundtrip("SELECT * FROM t LATERAL VIEW EXPLODE(arr) AS x"),
            "SELECT * FROM t LATERAL VIEW EXPLODE(arr) AS x"
        );

        // LATERAL VIEW with table alias
        assert_eq!(
            roundtrip("SELECT * FROM t LATERAL VIEW EXPLODE(arr) tmp AS x"),
            "SELECT * FROM t LATERAL VIEW EXPLODE(arr) tmp AS x"
        );

        // LATERAL VIEW OUTER (preserves nulls)
        assert_eq!(
            roundtrip("SELECT * FROM t LATERAL VIEW OUTER EXPLODE(arr) tmp AS x"),
            "SELECT * FROM t LATERAL VIEW OUTER EXPLODE(arr) tmp AS x"
        );

        // Multiple column aliases (for map explode)
        assert_eq!(
            roundtrip("SELECT * FROM t LATERAL VIEW EXPLODE(map_col) tmp AS k, v"),
            "SELECT * FROM t LATERAL VIEW EXPLODE(map_col) tmp AS k, v"
        );
    }
}

// ============================================================================
// Dialect-Specific Type and Syntax Tests (Phase 5)
// ============================================================================

#[cfg(test)]
mod dialect_type_tests {
    use super::*;
    use polyglot_sql::dialects::DialectType;
    use polyglot_sql::expressions::{BooleanLiteral, Expression};
    use polyglot_sql::generator::{Generator, GeneratorConfig};

    fn generate_with_dialect(expr: &Expression, dialect: DialectType) -> String {
        let config = GeneratorConfig {
            dialect: Some(dialect),
            ..Default::default()
        };
        let mut gen = Generator::with_config(config);
        gen.generate(expr).unwrap()
    }

    // Boolean literal format tests
    #[test]
    fn test_boolean_literal_tsql() {
        let true_expr = Expression::Boolean(BooleanLiteral { value: true });
        let false_expr = Expression::Boolean(BooleanLiteral { value: false });

        // SQL Server uses 1/0 for boolean literals
        assert_eq!(generate_with_dialect(&true_expr, DialectType::TSQL), "1");
        assert_eq!(generate_with_dialect(&false_expr, DialectType::TSQL), "0");
    }

    #[test]
    fn test_boolean_literal_oracle() {
        let true_expr = Expression::Boolean(BooleanLiteral { value: true });
        let false_expr = Expression::Boolean(BooleanLiteral { value: false });

        // Oracle uses 1/0 for boolean literals
        assert_eq!(generate_with_dialect(&true_expr, DialectType::Oracle), "1");
        assert_eq!(generate_with_dialect(&false_expr, DialectType::Oracle), "0");
    }

    #[test]
    fn test_boolean_literal_postgres() {
        let true_expr = Expression::Boolean(BooleanLiteral { value: true });
        let false_expr = Expression::Boolean(BooleanLiteral { value: false });

        // PostgreSQL uses TRUE/FALSE
        assert_eq!(
            generate_with_dialect(&true_expr, DialectType::PostgreSQL),
            "TRUE"
        );
        assert_eq!(
            generate_with_dialect(&false_expr, DialectType::PostgreSQL),
            "FALSE"
        );
    }

    #[test]
    fn test_boolean_literal_mysql() {
        let true_expr = Expression::Boolean(BooleanLiteral { value: true });
        let false_expr = Expression::Boolean(BooleanLiteral { value: false });

        // MySQL uses TRUE/FALSE
        assert_eq!(
            generate_with_dialect(&true_expr, DialectType::MySQL),
            "TRUE"
        );
        assert_eq!(
            generate_with_dialect(&false_expr, DialectType::MySQL),
            "FALSE"
        );
    }

    // MINUS vs EXCEPT tests
    #[test]
    fn test_except_to_minus_oracle() {
        // EXCEPT should become MINUS in Oracle
        assert_eq!(
            transpile(
                "SELECT a FROM t1 EXCEPT SELECT a FROM t2",
                DialectType::Generic,
                DialectType::Oracle
            ),
            "SELECT a FROM t1 MINUS SELECT a FROM t2"
        );
    }

    #[test]
    fn test_except_postgres() {
        // EXCEPT should stay EXCEPT in PostgreSQL
        assert_eq!(
            transpile(
                "SELECT a FROM t1 EXCEPT SELECT a FROM t2",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT a FROM t1 EXCEPT SELECT a FROM t2"
        );
    }

    #[test]
    fn test_except_all() {
        // EXCEPT ALL in PostgreSQL
        assert_eq!(
            transpile(
                "SELECT a FROM t1 EXCEPT ALL SELECT a FROM t2",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT a FROM t1 EXCEPT ALL SELECT a FROM t2"
        );
    }

    // TOP vs LIMIT tests
    #[test]
    fn test_limit_to_top_tsql() {
        // LIMIT should become TOP in SQL Server
        assert_eq!(
            transpile(
                "SELECT a FROM t LIMIT 10",
                DialectType::Generic,
                DialectType::TSQL
            ),
            "SELECT TOP 10 a FROM t"
        );
    }

    #[test]
    fn test_limit_postgres() {
        // LIMIT should stay LIMIT in PostgreSQL
        assert_eq!(
            transpile(
                "SELECT a FROM t LIMIT 10",
                DialectType::Generic,
                DialectType::PostgreSQL
            ),
            "SELECT a FROM t LIMIT 10"
        );
    }

    #[test]
    fn test_top_tsql_roundtrip() {
        // TOP should roundtrip correctly
        assert_eq!(
            roundtrip("SELECT TOP (10) a FROM t"),
            "SELECT a FROM t LIMIT 10"
        );
    }

    #[test]
    fn test_limit_with_offset_tsql() {
        // LIMIT with OFFSET in SQL Server uses OFFSET ... FETCH syntax
        assert_eq!(
            transpile(
                "SELECT a FROM t ORDER BY a LIMIT 10 OFFSET 5",
                DialectType::Generic,
                DialectType::TSQL
            ),
            "SELECT a FROM t ORDER BY a OFFSET 5 ROWS FETCH NEXT 10 ROWS ONLY"
        );
    }
}

// ============================================================================
// New Dialect Tests - SQLite, Presto, Trino, Redshift, ClickHouse, Databricks
// ============================================================================

#[cfg(test)]
mod new_dialect_tests {
    use super::*;

    // SQLite tests
    #[test]
    fn test_sqlite_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::SQLite
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_sqlite_ifnull_to_coalesce() {
        // SQLite supports both IFNULL and COALESCE, but we normalize to COALESCE
        assert_eq!(
            transpile(
                "SELECT COALESCE(a, b) FROM t",
                DialectType::Generic,
                DialectType::SQLite
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // Presto tests
    #[test]
    fn test_presto_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Presto
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_presto_nvl_to_coalesce() {
        // Presto uses COALESCE instead of NVL
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Presto
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // Trino tests
    #[test]
    fn test_trino_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Trino
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_trino_ifnull_to_coalesce() {
        // Trino uses COALESCE instead of IFNULL
        assert_eq!(
            transpile(
                "SELECT IFNULL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Trino
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // Redshift tests
    #[test]
    fn test_redshift_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Redshift
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_redshift_nvl_to_coalesce() {
        // Redshift supports NVL but we normalize to COALESCE
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Redshift
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // ClickHouse tests
    #[test]
    fn test_clickhouse_basic_select() {
        // ClickHouse uses uppercase keywords (matching Python sqlglot behavior)
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::ClickHouse
            ),
            "SELECT a, b FROM t"
        );
    }

    // Databricks tests
    #[test]
    fn test_databricks_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Databricks
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_databricks_nvl_to_coalesce() {
        // Databricks uses COALESCE for null handling
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Databricks
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // Cross-dialect transpilation tests
    #[test]
    fn test_sqlite_to_postgres() {
        assert_eq!(
            transpile(
                "SELECT * FROM t WHERE a = 1",
                DialectType::SQLite,
                DialectType::PostgreSQL
            ),
            "SELECT * FROM t WHERE a = 1"
        );
    }

    #[test]
    fn test_presto_to_trino() {
        // Presto and Trino are highly compatible
        assert_eq!(
            transpile(
                "SELECT COUNT(*) FROM t GROUP BY a",
                DialectType::Presto,
                DialectType::Trino
            ),
            "SELECT COUNT(*) FROM t GROUP BY a"
        );
    }

    #[test]
    fn test_redshift_to_postgres() {
        // Redshift is PostgreSQL-based
        assert_eq!(
            transpile(
                "SELECT a, SUM(b) FROM t GROUP BY a",
                DialectType::Redshift,
                DialectType::PostgreSQL
            ),
            "SELECT a, SUM(b) FROM t GROUP BY a"
        );
    }

    #[test]
    fn test_databricks_to_spark() {
        // Databricks extends Spark
        assert_eq!(
            transpile(
                "SELECT * FROM t",
                DialectType::Databricks,
                DialectType::Spark
            ),
            "SELECT * FROM t"
        );
    }

    // Athena tests (Phase 6.3)
    #[test]
    fn test_athena_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Athena
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_athena_ifnull_to_coalesce() {
        // Athena (Trino-based) uses COALESCE instead of IFNULL
        assert_eq!(
            transpile(
                "SELECT IFNULL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Athena
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    #[test]
    fn test_athena_nvl_to_coalesce() {
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Athena
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // Teradata tests (Phase 6.3)
    #[test]
    fn test_teradata_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Teradata
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_teradata_ifnull_to_coalesce() {
        // Teradata uses COALESCE
        assert_eq!(
            transpile(
                "SELECT IFNULL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Teradata
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // Doris tests (Phase 6.3)
    #[test]
    fn test_doris_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Doris
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_doris_nvl_to_ifnull() {
        // Doris (MySQL-compatible) uses IFNULL
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::Generic,
                DialectType::Doris
            ),
            "SELECT IFNULL(a, b) FROM t"
        );
    }

    // StarRocks tests (Phase 6.3)
    #[test]
    fn test_starrocks_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::StarRocks
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_starrocks_nvl_to_ifnull() {
        // StarRocks (MySQL-compatible) uses IFNULL
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::Generic,
                DialectType::StarRocks
            ),
            "SELECT IFNULL(a, b) FROM t"
        );
    }

    // Materialize tests (Phase 6.3)
    #[test]
    fn test_materialize_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::Materialize
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_materialize_ifnull_to_coalesce() {
        // Materialize (PostgreSQL-compatible) uses COALESCE
        assert_eq!(
            transpile(
                "SELECT IFNULL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::Materialize
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // RisingWave tests (Phase 6.3)
    #[test]
    fn test_risingwave_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::RisingWave
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_risingwave_ifnull_to_coalesce() {
        // RisingWave (PostgreSQL-compatible) uses COALESCE
        assert_eq!(
            transpile(
                "SELECT IFNULL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::RisingWave
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // SingleStore tests (Phase 6.3)
    #[test]
    fn test_singlestore_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::SingleStore
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_singlestore_nvl_to_ifnull() {
        // SingleStore (MySQL-compatible) uses IFNULL
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::Generic,
                DialectType::SingleStore
            ),
            "SELECT IFNULL(a, b) FROM t"
        );
    }

    // CockroachDB tests (Phase 6.3)
    #[test]
    fn test_cockroachdb_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::CockroachDB
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_cockroachdb_ifnull_to_coalesce() {
        // CockroachDB (PostgreSQL-compatible) uses COALESCE
        assert_eq!(
            transpile(
                "SELECT IFNULL(a, b) FROM t",
                DialectType::MySQL,
                DialectType::CockroachDB
            ),
            "SELECT COALESCE(a, b) FROM t"
        );
    }

    // TiDB tests (Phase 6.3)
    #[test]
    fn test_tidb_basic_select() {
        assert_eq!(
            transpile(
                "SELECT a, b FROM t",
                DialectType::Generic,
                DialectType::TiDB
            ),
            "SELECT a, b FROM t"
        );
    }

    #[test]
    fn test_tidb_nvl_to_ifnull() {
        // TiDB (MySQL-compatible) uses IFNULL
        assert_eq!(
            transpile(
                "SELECT NVL(a, b) FROM t",
                DialectType::Generic,
                DialectType::TiDB
            ),
            "SELECT IFNULL(a, b) FROM t"
        );
    }

    // Cross-dialect tests for Phase 6.3 dialects
    #[test]
    fn test_athena_to_trino() {
        // Athena is based on Trino
        assert_eq!(
            transpile(
                "SELECT COUNT(*) FROM t GROUP BY a",
                DialectType::Athena,
                DialectType::Trino
            ),
            "SELECT COUNT(*) FROM t GROUP BY a"
        );
    }

    #[test]
    fn test_materialize_to_postgres() {
        // Materialize is PostgreSQL-compatible
        assert_eq!(
            transpile(
                "SELECT a, SUM(b) FROM t GROUP BY a",
                DialectType::Materialize,
                DialectType::PostgreSQL
            ),
            "SELECT a, SUM(b) FROM t GROUP BY a"
        );
    }

    #[test]
    fn test_risingwave_to_postgres() {
        // RisingWave is PostgreSQL-compatible
        assert_eq!(
            transpile(
                "SELECT a, SUM(b) FROM t GROUP BY a",
                DialectType::RisingWave,
                DialectType::PostgreSQL
            ),
            "SELECT a, SUM(b) FROM t GROUP BY a"
        );
    }

    #[test]
    fn test_cockroachdb_to_postgres() {
        // CockroachDB is PostgreSQL-compatible
        assert_eq!(
            transpile(
                "SELECT a, SUM(b) FROM t GROUP BY a",
                DialectType::CockroachDB,
                DialectType::PostgreSQL
            ),
            "SELECT a, SUM(b) FROM t GROUP BY a"
        );
    }

    #[test]
    fn test_tidb_to_mysql() {
        // TiDB is MySQL-compatible
        assert_eq!(
            transpile(
                "SELECT * FROM t WHERE a = 1",
                DialectType::TiDB,
                DialectType::MySQL
            ),
            "SELECT * FROM t WHERE a = 1"
        );
    }

    #[test]
    fn test_singlestore_to_mysql() {
        // SingleStore is MySQL-compatible
        assert_eq!(
            transpile(
                "SELECT * FROM t WHERE a = 1",
                DialectType::SingleStore,
                DialectType::MySQL
            ),
            "SELECT * FROM t WHERE a = 1"
        );
    }

    #[test]
    fn test_doris_to_mysql() {
        // Doris is MySQL-compatible
        assert_eq!(
            transpile(
                "SELECT * FROM t WHERE a = 1",
                DialectType::Doris,
                DialectType::MySQL
            ),
            "SELECT * FROM t WHERE a = 1"
        );
    }

    #[test]
    fn test_starrocks_to_mysql() {
        // StarRocks is MySQL-compatible
        assert_eq!(
            transpile(
                "SELECT * FROM t WHERE a = 1",
                DialectType::StarRocks,
                DialectType::MySQL
            ),
            "SELECT * FROM t WHERE a = 1"
        );
    }
}

// ============================================================================
// CONNECT BY Tests - Oracle Hierarchical Queries (Phase C.1)
// ============================================================================

#[cfg(test)]
mod connect_by_tests {
    use super::*;

    #[test]
    fn test_connect_by_basic() {
        // Basic CONNECT BY with PRIOR
        let result = roundtrip("SELECT * FROM employees CONNECT BY PRIOR employee_id = manager_id");
        assert!(result.contains("CONNECT BY"));
        assert!(result.contains("PRIOR"));
    }

    #[test]
    fn test_start_with_before_connect_by() {
        // START WITH before CONNECT BY
        let result = roundtrip("SELECT * FROM employees START WITH manager_id IS NULL CONNECT BY PRIOR employee_id = manager_id");
        assert!(result.contains("START WITH"));
        assert!(result.contains("CONNECT BY"));
        assert!(result.contains("PRIOR"));
    }

    #[test]
    fn test_start_with_after_connect_by() {
        // START WITH after CONNECT BY (should also be valid)
        let result = roundtrip("SELECT * FROM employees CONNECT BY PRIOR employee_id = manager_id START WITH manager_id IS NULL");
        assert!(result.contains("START WITH"));
        assert!(result.contains("CONNECT BY"));
    }

    #[test]
    fn test_connect_by_nocycle() {
        // CONNECT BY with NOCYCLE
        let result =
            roundtrip("SELECT * FROM employees CONNECT BY NOCYCLE PRIOR employee_id = manager_id");
        assert!(result.contains("CONNECT BY"));
        assert!(result.contains("NOCYCLE"));
        assert!(result.contains("PRIOR"));
    }

    #[test]
    fn test_connect_by_with_level() {
        // CONNECT BY with LEVEL pseudocolumn
        let result = roundtrip(
            "SELECT employee_id, LEVEL FROM employees CONNECT BY PRIOR employee_id = manager_id",
        );
        assert!(result.contains("LEVEL"));
        assert!(result.contains("CONNECT BY"));
    }

    #[test]
    fn test_connect_by_root() {
        // CONNECT_BY_ROOT function
        let result = roundtrip("SELECT CONNECT_BY_ROOT(employee_id) FROM employees CONNECT BY PRIOR employee_id = manager_id");
        assert!(result.contains("CONNECT_BY_ROOT"));
    }

    #[test]
    fn test_connect_by_with_where() {
        // CONNECT BY after WHERE clause
        let result = roundtrip("SELECT * FROM employees WHERE department_id = 10 CONNECT BY PRIOR employee_id = manager_id");
        assert!(result.contains("WHERE"));
        assert!(result.contains("CONNECT BY"));
    }

    #[test]
    fn test_connect_by_complex() {
        // More complex CONNECT BY with AND in condition
        let result = roundtrip("SELECT * FROM employees START WITH manager_id IS NULL CONNECT BY PRIOR employee_id = manager_id AND LEVEL <= 5");
        assert!(result.contains("START WITH"));
        assert!(result.contains("CONNECT BY"));
        assert!(result.contains("AND"));
    }
}

// ============================================================================
// MATCH_RECOGNIZE Tests - Oracle/Snowflake Pattern Matching (Phase C.2)
// ============================================================================

#[cfg(test)]
mod match_recognize_tests {
    use super::*;
    use polyglot_sql::generator::GeneratorConfig;

    fn roundtrip_oracle(sql: &str) -> String {
        let ast = Parser::parse_sql(sql).expect(&format!("Failed to parse: {}", sql));
        let config = GeneratorConfig {
            dialect: Some(DialectType::Oracle),
            ..Default::default()
        };
        let mut gen = Generator::with_config(config);
        gen.generate(&ast[0]).expect("Failed to generate SQL")
    }

    #[test]
    fn test_match_recognize_basic() {
        // Basic MATCH_RECOGNIZE with PATTERN and DEFINE
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (PATTERN (A B) DEFINE A AS A.price > 10) AS mr",
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("PATTERN"));
        assert!(result.contains("DEFINE"));
    }

    #[test]
    fn test_match_recognize_partition_by() {
        // MATCH_RECOGNIZE with PARTITION BY
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (PARTITION BY symbol PATTERN (A B) DEFINE A AS A.price > 10)"
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("PARTITION BY"));
        assert!(result.contains("symbol"));
    }

    #[test]
    fn test_match_recognize_order_by() {
        // MATCH_RECOGNIZE with ORDER BY
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (ORDER BY trade_date PATTERN (A B) DEFINE A AS A.price > 10)"
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("ORDER BY"));
        assert!(result.contains("trade_date"));
    }

    #[test]
    fn test_match_recognize_measures() {
        // MATCH_RECOGNIZE with MEASURES
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (MEASURES A.price AS start_price, B.price AS end_price PATTERN (A B) DEFINE A AS A.price > 10)"
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("MEASURES"));
        assert!(result.contains("start_price"));
        assert!(result.contains("end_price"));
    }

    #[test]
    fn test_match_recognize_one_row_per_match() {
        // MATCH_RECOGNIZE with ONE ROW PER MATCH
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (ONE ROW PER MATCH PATTERN (A B) DEFINE A AS A.price > 10)"
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("ONE ROW PER MATCH"));
    }

    #[test]
    fn test_match_recognize_all_rows_per_match() {
        // MATCH_RECOGNIZE with ALL ROWS PER MATCH
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (ALL ROWS PER MATCH PATTERN (A B) DEFINE A AS A.price > 10)"
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("ALL ROWS PER MATCH"));
    }

    #[test]
    fn test_match_recognize_after_match_skip() {
        // MATCH_RECOGNIZE with AFTER MATCH SKIP
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (AFTER MATCH SKIP PAST LAST ROW PATTERN (A B) DEFINE A AS A.price > 10)"
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("AFTER MATCH SKIP PAST LAST ROW"));
    }

    #[test]
    fn test_match_recognize_complex() {
        // Full MATCH_RECOGNIZE with all clauses
        let result = roundtrip_oracle(
            "SELECT * FROM ticker MATCH_RECOGNIZE (PARTITION BY symbol ORDER BY trade_date MEASURES A.price AS start_price ONE ROW PER MATCH AFTER MATCH SKIP PAST LAST ROW PATTERN (A B+ C) DEFINE A AS A.price > 10, B AS B.price > A.price)"
        );
        assert!(result.contains("MATCH_RECOGNIZE"));
        assert!(result.contains("PARTITION BY"));
        assert!(result.contains("ORDER BY"));
        assert!(result.contains("MEASURES"));
        assert!(result.contains("ONE ROW PER MATCH"));
        assert!(result.contains("AFTER MATCH SKIP"));
        assert!(result.contains("PATTERN"));
        assert!(result.contains("DEFINE"));
    }

    #[test]
    fn test_match_recognize_unsupported_dialect() {
        // MATCH_RECOGNIZE should generate comment for unsupported dialects
        let ast = Parser::parse_sql(
            "SELECT * FROM ticker MATCH_RECOGNIZE (PATTERN (A B) DEFINE A AS A.price > 10)",
        )
        .expect("Failed to parse");
        let config = GeneratorConfig {
            dialect: Some(DialectType::PostgreSQL),
            ..Default::default()
        };
        let mut gen = Generator::with_config(config);
        let result = gen.generate(&ast[0]).expect("Failed to generate SQL");
        assert!(result.contains("MATCH_RECOGNIZE not supported"));
        assert_eq!(gen.unsupported_messages().len(), 1);
        assert!(gen.unsupported_messages()[0].contains("MATCH_RECOGNIZE"));
    }

    #[test]
    fn test_match_recognize_unsupported_raise_level() {
        let ast = Parser::parse_sql(
            "SELECT * FROM ticker MATCH_RECOGNIZE (PATTERN (A B) DEFINE A AS A.price > 10)",
        )
        .expect("Failed to parse");
        let config = GeneratorConfig {
            dialect: Some(DialectType::PostgreSQL),
            unsupported_level: UnsupportedLevel::Raise,
            ..Default::default()
        };
        let mut gen = Generator::with_config(config);
        let err = gen
            .generate(&ast[0])
            .expect_err("expected unsupported raise error");
        assert!(err.to_string().contains("MATCH_RECOGNIZE"));
    }

    #[test]
    fn test_match_recognize_unsupported_immediate_level() {
        let ast = Parser::parse_sql(
            "SELECT * FROM ticker MATCH_RECOGNIZE (PATTERN (A B) DEFINE A AS A.price > 10)",
        )
        .expect("Failed to parse");
        let config = GeneratorConfig {
            dialect: Some(DialectType::PostgreSQL),
            unsupported_level: UnsupportedLevel::Immediate,
            ..Default::default()
        };
        let mut gen = Generator::with_config(config);
        let err = gen
            .generate(&ast[0])
            .expect_err("expected immediate unsupported error");
        assert!(err.to_string().contains("MATCH_RECOGNIZE"));
    }
}