exarrow-rs 0.14.0

ADBC-compatible driver for Exasol with Arrow data format support
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
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
//! WebSocket transport integration tests for exarrow-rs ADBC driver.
//!
//! Mirrors all functional tests from `integration_tests.rs` but forces
//! `transport=websocket` in the connection string. Gated behind the
//! `websocket` feature flag.
//!
//! # Running
//!
//! ```bash
//! cargo test --no-default-features --features websocket --test websocket_integration_tests
//! ```

#![cfg(feature = "websocket")]

mod common;

use arrow::array::{Array, BooleanArray, Float64Array, StringArray};
use arrow::datatypes::DataType;
use common::{generate_test_schema_name, get_host, get_password, get_port, get_user};
use exarrow_rs::adbc::{Connection, Driver};

// Helper: build a connection string that forces the WebSocket transport.
fn ws_connection_string() -> String {
    format!(
        "exasol://{}:{}@{}:{}?tls=true&validateservercertificate=0&transport=websocket",
        get_user(),
        get_password(),
        get_host(),
        get_port()
    )
}

// Helper: open a connection over WebSocket (with retry).
async fn get_ws_connection() -> Result<Connection, exarrow_rs::error::ExasolError> {
    use std::time::Duration;
    let driver = Driver::new();
    let conn_string = ws_connection_string();

    let mut last_error = None;
    for attempt in 1..=5u32 {
        let database = driver.open(&conn_string)?;
        match database.connect().await {
            Ok(conn) => return Ok(conn),
            Err(e) => {
                eprintln!("WS connection attempt {}/5 failed: {}", attempt, e);
                last_error = Some(e);
                if attempt < 5 {
                    tokio::time::sleep(Duration::from_secs(2)).await;
                }
            }
        }
    }

    Err(exarrow_rs::error::ExasolError::Connection(
        last_error.unwrap(),
    ))
}

// Helper: set up a DML test table inside `schema_name` (schema must already exist).
async fn ws_setup_dml_test_table(conn: &mut Connection, schema_name: &str) {
    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        r#"
        CREATE TABLE {}.users (
            id INTEGER,
            name VARCHAR(100),
            email VARCHAR(255),
            age INTEGER
        )
        "#,
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");
}

// Helper: drop a schema.
async fn ws_cleanup_schema(conn: &mut Connection, schema_name: &str) {
    let _ = conn
        .execute_update(&format!("DROP SCHEMA {} CASCADE", schema_name))
        .await;
}

// ── Section: Transport selection ──────────────────────────────────────────────

/// Verify that the WebSocket transport is actually selected when `transport=websocket`
/// is present in the connection string.
#[tokio::test]
async fn test_ws_transport_selected() {
    skip_if_no_exasol!();

    let conn = get_ws_connection()
        .await
        .expect("WebSocket connection should succeed");

    assert!(!conn.is_closed().await, "Connection should be open");

    conn.close().await.expect("Failed to close connection");
}

// ── Section 2: Connection ─────────────────────────────────────────────────────

/// 2.1 Connection succeeds with valid credentials over WebSocket.
#[tokio::test]
async fn test_ws_connection_succeeds_with_valid_credentials() {
    skip_if_no_exasol!();

    let conn = get_ws_connection()
        .await
        .expect("WebSocket connection with valid credentials should succeed");

    assert!(
        !conn.is_closed().await,
        "Connection should be open after successful connect"
    );

    let session_id = conn.session_id();
    assert!(
        !session_id.is_empty(),
        "Session ID should be assigned after connection"
    );

    conn.close()
        .await
        .expect("Should be able to close connection");
}

/// 2.2 Connection fails with invalid credentials over WebSocket.
#[tokio::test]
async fn test_ws_connection_fails_with_invalid_credentials() {
    skip_if_no_exasol!();

    let conn_str = format!(
        "exasol://invalid_user:wrong_password@{}:{}?tls=true&validateservercertificate=0&transport=websocket",
        get_host(),
        get_port()
    );

    let driver = Driver::new();
    let database = driver.open(&conn_str).expect("open should succeed");
    let result = database.connect().await;

    assert!(
        result.is_err(),
        "Connection with invalid credentials should fail"
    );

    let error = result.unwrap_err();
    let error_msg = error.to_string().to_lowercase();
    assert!(
        error_msg.contains("auth") || error_msg.contains("failed") || error_msg.contains("invalid"),
        "Error should indicate authentication failure, got: {}",
        error
    );
}

/// 2.3 Connection closure and cleanup over WebSocket.
#[tokio::test]
async fn test_ws_connection_closure_and_cleanup() {
    skip_if_no_exasol!();

    let conn = get_ws_connection()
        .await
        .expect("Failed to connect for cleanup test");

    let session_id = conn.session_id().to_string();
    assert!(!session_id.is_empty(), "Session ID should exist");

    conn.close().await.expect("Connection close should succeed");
}

/// 2.4 Connection health check over WebSocket.
#[tokio::test]
async fn test_ws_connection_health_check() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection()
        .await
        .expect("Failed to connect for health check test");

    assert!(
        !conn.is_closed().await,
        "Fresh connection should not be closed"
    );

    let batches = conn
        .query("SELECT 1 AS health_check")
        .await
        .expect("Health check query should succeed");

    assert!(!batches.is_empty(), "Health check should return results");
    assert_eq!(batches[0].num_rows(), 1, "Health check should return 1 row");

    conn.close().await.expect("Failed to close connection");
}

// ── Section 3: Basic Queries ──────────────────────────────────────────────────

/// 3.1 SELECT from DUAL over WebSocket.
#[tokio::test]
async fn test_ws_select_from_dual() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let batches = conn
        .query("SELECT 42 AS answer")
        .await
        .expect("SELECT query should succeed");

    assert_eq!(batches.len(), 1, "Should return exactly one batch");
    assert_eq!(batches[0].num_rows(), 1, "Should return exactly one row");
    assert_eq!(
        batches[0].num_columns(),
        1,
        "Should return exactly one column"
    );

    let schema = batches[0].schema();
    assert_eq!(
        schema.field(0).name(),
        "ANSWER",
        "Column name should match (Exasol uppercases identifiers)"
    );

    conn.close().await.expect("Failed to close connection");
}

/// 3.2 Arrow RecordBatch schema and data over WebSocket.
#[tokio::test]
async fn test_ws_arrow_recordbatch_schema_and_data() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let batches = conn
        .query("SELECT 100 AS num_value, 'hello' AS text_value, TRUE AS bool_value")
        .await
        .expect("Query should succeed");

    assert!(!batches.is_empty(), "Should return at least one batch");

    let batch = &batches[0];
    let schema = batch.schema();

    assert_eq!(schema.fields().len(), 3, "Schema should have 3 fields");

    let field_names: Vec<&str> = schema.fields().iter().map(|f| f.name().as_str()).collect();
    assert!(
        field_names.contains(&"NUM_VALUE"),
        "Schema should contain NUM_VALUE"
    );
    assert!(
        field_names.contains(&"TEXT_VALUE"),
        "Schema should contain TEXT_VALUE"
    );
    assert!(
        field_names.contains(&"BOOL_VALUE"),
        "Schema should contain BOOL_VALUE"
    );

    assert_eq!(batch.num_rows(), 1, "Should have 1 row");

    conn.close().await.expect("Failed to close connection");
}

/// 3.3 Arithmetic expressions over WebSocket.
#[tokio::test]
async fn test_ws_arithmetic_expressions() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let batches = conn
        .query(
            "SELECT 1+1 AS addition, 10-3 AS subtraction, 4*5 AS multiplication, 20/4 AS division",
        )
        .await
        .expect("Arithmetic query should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 1, "Should return 1 row");
    assert_eq!(batch.num_columns(), 4, "Should return 4 columns");

    conn.close().await.expect("Failed to close connection");
}

/// 3.4 String data and UTF-8 over WebSocket.
#[tokio::test]
async fn test_ws_string_data_and_utf8() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let batches = conn
        .query("SELECT 'Hello, World!' AS english, 'Gruess Gott' AS german, 'Bonjour' AS french")
        .await
        .expect("String query should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 1, "Should return 1 row");

    let schema = batch.schema();
    for field in schema.fields() {
        assert!(
            matches!(field.data_type(), DataType::Utf8 | DataType::LargeUtf8),
            "String columns should be Utf8 type"
        );
    }

    conn.close().await.expect("Failed to close connection");
}

// ── Section 4: DDL ────────────────────────────────────────────────────────────

/// 4.1 CREATE SCHEMA over WebSocket.
#[tokio::test]
async fn test_ws_create_schema() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    let result = conn
        .execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await;

    assert!(
        result.is_ok(),
        "CREATE SCHEMA should succeed: {:?}",
        result.err()
    );

    let open_result = conn
        .execute_update(&format!("OPEN SCHEMA {}", schema_name))
        .await;

    ws_cleanup_schema(&mut conn, &schema_name).await;

    assert!(
        open_result.is_ok(),
        "Should be able to open created schema: {:?}",
        open_result.err()
    );

    conn.close().await.expect("Failed to close connection");
}

/// 4.2 CREATE TABLE with various column types over WebSocket.
#[tokio::test]
async fn test_ws_create_table_various_types() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    let create_table_sql = format!(
        r#"
        CREATE TABLE {}.test_types (
            id INTEGER,
            name VARCHAR(100),
            description VARCHAR(2000),
            amount DECIMAL(18, 2),
            is_active BOOLEAN,
            created_date DATE,
            updated_at TIMESTAMP,
            ratio DOUBLE
        )
        "#,
        schema_name
    );

    let result = conn.execute_update(&create_table_sql).await;
    assert!(
        result.is_ok(),
        "CREATE TABLE should succeed: {:?}",
        result.err()
    );

    let query_result = conn
        .query(&format!(
            "SELECT * FROM {}.test_types WHERE 1=0",
            schema_name
        ))
        .await;

    ws_cleanup_schema(&mut conn, &schema_name).await;

    assert!(
        query_result.is_ok(),
        "Query on created table should succeed"
    );

    conn.close().await.expect("Failed to close connection");
}

/// 4.2b DDL followed by DML and SELECT over WebSocket.
#[tokio::test]
async fn test_ws_ddl_then_insert_select_same_connection() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.ddl_then_dml (id INTEGER, name VARCHAR(32))",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    let insert_result = conn
        .execute_update(&format!(
            "INSERT INTO {}.ddl_then_dml (id, name) VALUES (1, 'Alice'), (2, 'Bob')",
            schema_name
        ))
        .await;

    let query_result = conn
        .query(&format!(
            "SELECT id, name FROM {}.ddl_then_dml ORDER BY id",
            schema_name
        ))
        .await;

    ws_cleanup_schema(&mut conn, &schema_name).await;

    assert!(
        insert_result.is_ok(),
        "INSERT after DDL should succeed: {:?}",
        insert_result.err()
    );
    assert_eq!(insert_result.unwrap(), 2);
    assert!(query_result.is_ok(), "SELECT after DDL should succeed");

    let batches = query_result.unwrap();
    let total_rows: usize = batches.iter().map(|batch| batch.num_rows()).sum();
    assert_eq!(total_rows, 2, "Should read both inserted rows");

    conn.close().await.expect("Failed to close connection");
}

/// 4.3 DROP TABLE over WebSocket.
#[tokio::test]
async fn test_ws_drop_table() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.drop_test (id INTEGER)",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    let drop_result = conn
        .execute_update(&format!("DROP TABLE {}.drop_test", schema_name))
        .await;

    assert!(
        drop_result.is_ok(),
        "DROP TABLE should succeed: {:?}",
        drop_result.err()
    );

    let query_result = conn
        .query(&format!("SELECT * FROM {}.drop_test", schema_name))
        .await;

    ws_cleanup_schema(&mut conn, &schema_name).await;

    assert!(query_result.is_err(), "Query on dropped table should fail");

    conn.close().await.expect("Failed to close connection");
}

/// 4.4 DROP SCHEMA over WebSocket.
#[tokio::test]
async fn test_ws_drop_schema() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.test_table (id INTEGER)",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    let drop_result = conn
        .execute_update(&format!("DROP SCHEMA {} CASCADE", schema_name))
        .await;

    assert!(
        drop_result.is_ok(),
        "DROP SCHEMA CASCADE should succeed: {:?}",
        drop_result.err()
    );

    let open_result = conn
        .execute_update(&format!("OPEN SCHEMA {}", schema_name))
        .await;

    assert!(
        open_result.is_err(),
        "OPEN SCHEMA on dropped schema should fail"
    );

    conn.close().await.expect("Failed to close connection");
}

// ── Section 5: DML ────────────────────────────────────────────────────────────

/// 5.1 INSERT single row over WebSocket.
#[tokio::test]
async fn test_ws_insert_single_row() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    let insert_result = conn
        .execute_update(&format!(
            "INSERT INTO {}.users (id, name, email, age) VALUES (1, 'Alice', 'alice@example.com', 30)",
            schema_name
        ))
        .await;

    assert!(
        insert_result.is_ok(),
        "INSERT should succeed: {:?}",
        insert_result.err()
    );
    assert_eq!(insert_result.unwrap(), 1, "INSERT should affect 1 row");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 5.2 INSERT multiple rows over WebSocket.
#[tokio::test]
async fn test_ws_insert_multiple_rows() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    let insert_result = conn
        .execute_update(&format!(
            r#"
            INSERT INTO {}.users (id, name, email, age) VALUES
            (1, 'Alice', 'alice@example.com', 30),
            (2, 'Bob', 'bob@example.com', 25),
            (3, 'Charlie', 'charlie@example.com', 35)
            "#,
            schema_name
        ))
        .await;

    assert!(
        insert_result.is_ok(),
        "INSERT should succeed: {:?}",
        insert_result.err()
    );
    assert_eq!(insert_result.unwrap(), 3, "INSERT should affect 3 rows");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 5.3 SELECT to verify inserted data over WebSocket.
#[tokio::test]
async fn test_ws_select_inserted_data() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.users (id, name, email, age) VALUES
        (1, 'Alice', 'alice@example.com', 30),
        (2, 'Bob', 'bob@example.com', 25)
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT id, name, email, age FROM {}.users ORDER BY id",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 2, "Should have 2 rows");
    assert_eq!(batch.num_columns(), 4, "Should have 4 columns");

    let schema = batch.schema();
    let field_names: Vec<&str> = schema.fields().iter().map(|f| f.name().as_str()).collect();
    assert_eq!(field_names, vec!["ID", "NAME", "EMAIL", "AGE"]);

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 5.4 UPDATE row over WebSocket.
#[tokio::test]
async fn test_ws_update_row() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    conn.execute_update(&format!(
        "INSERT INTO {}.users (id, name, email, age) VALUES (1, 'Alice', 'alice@example.com', 30)",
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let update_result = conn
        .execute_update(&format!(
            "UPDATE {}.users SET age = 31, email = 'alice.new@example.com' WHERE id = 1",
            schema_name
        ))
        .await;

    assert!(
        update_result.is_ok(),
        "UPDATE should succeed: {:?}",
        update_result.err()
    );
    assert_eq!(update_result.unwrap(), 1, "UPDATE should affect 1 row");

    let batches = conn
        .query(&format!(
            "SELECT age, email FROM {}.users WHERE id = 1",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");
    assert_eq!(batches[0].num_rows(), 1, "Should have 1 row");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 5.5 DELETE row over WebSocket.
#[tokio::test]
async fn test_ws_delete_row() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.users (id, name, email, age) VALUES
        (1, 'Alice', 'alice@example.com', 30),
        (2, 'Bob', 'bob@example.com', 25)
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let delete_result = conn
        .execute_update(&format!("DELETE FROM {}.users WHERE id = 1", schema_name))
        .await;

    assert!(
        delete_result.is_ok(),
        "DELETE should succeed: {:?}",
        delete_result.err()
    );
    assert_eq!(delete_result.unwrap(), 1, "DELETE should affect 1 row");

    let batches = conn
        .query(&format!(
            "SELECT COUNT(*) AS cnt FROM {}.users",
            schema_name
        ))
        .await
        .expect("SELECT COUNT should succeed");

    assert!(!batches.is_empty(), "Should return results");
    assert_eq!(batches[0].num_rows(), 1, "Should have 1 row");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

// ── Section 6: Transactions ───────────────────────────────────────────────────

/// 6.1 Transaction begin over WebSocket.
#[tokio::test]
async fn test_ws_transaction_begin() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    assert!(
        !conn.in_transaction(),
        "Should not be in transaction initially"
    );

    let begin_result = conn.begin_transaction().await;
    assert!(
        begin_result.is_ok(),
        "BEGIN TRANSACTION should succeed: {:?}",
        begin_result.err()
    );

    assert!(
        conn.in_transaction(),
        "Should be in transaction after BEGIN"
    );

    conn.rollback().await.expect("ROLLBACK should succeed");

    conn.close().await.expect("Failed to close connection");
}

/// 6.2 COMMIT makes changes permanent over WebSocket.
#[tokio::test]
async fn test_ws_transaction_commit() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    conn.begin_transaction()
        .await
        .expect("BEGIN should succeed");

    conn.execute_update(&format!(
        "INSERT INTO {}.users (id, name, email, age) VALUES (1, 'Alice', 'alice@example.com', 30)",
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let commit_result = conn.commit().await;
    assert!(
        commit_result.is_ok(),
        "COMMIT should succeed: {:?}",
        commit_result.err()
    );

    assert!(
        !conn.in_transaction(),
        "Should not be in transaction after COMMIT"
    );

    let mut conn2 = get_ws_connection()
        .await
        .expect("Failed to connect second connection");

    let batches = conn2
        .query(&format!(
            "SELECT COUNT(*) AS cnt FROM {}.users",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    ws_cleanup_schema(&mut conn2, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
    conn2.close().await.expect("Failed to close connection 2");
}

/// 6.3 ROLLBACK discards changes over WebSocket.
#[tokio::test]
async fn test_ws_transaction_rollback() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    conn.execute_update(&format!(
        "INSERT INTO {}.users (id, name, email, age) VALUES (1, 'Alice', 'alice@example.com', 30)",
        schema_name
    ))
    .await
    .expect("Initial INSERT should succeed");

    conn.begin_transaction()
        .await
        .expect("BEGIN should succeed");

    conn.execute_update(&format!(
        "INSERT INTO {}.users (id, name, email, age) VALUES (2, 'Bob', 'bob@example.com', 25)",
        schema_name
    ))
    .await
    .expect("Second INSERT should succeed");

    let rollback_result = conn.rollback().await;
    assert!(
        rollback_result.is_ok(),
        "ROLLBACK should succeed: {:?}",
        rollback_result.err()
    );

    assert!(
        !conn.in_transaction(),
        "Should not be in transaction after ROLLBACK"
    );

    let batches = conn
        .query(&format!(
            "SELECT COUNT(*) AS cnt FROM {}.users",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 6.4 Auto-commit default behavior over WebSocket.
#[tokio::test]
async fn test_ws_auto_commit_behavior() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();
    ws_setup_dml_test_table(&mut conn, &schema_name).await;

    conn.execute_update(&format!(
        "INSERT INTO {}.users (id, name, email, age) VALUES (1, 'Alice', 'alice@example.com', 30)",
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    assert!(
        !conn.in_transaction(),
        "Should not be in transaction in auto-commit mode"
    );

    let mut conn2 = get_ws_connection()
        .await
        .expect("Failed to connect second connection");

    let batches = conn2
        .query(&format!(
            "SELECT COUNT(*) AS cnt FROM {}.users",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    ws_cleanup_schema(&mut conn2, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
    conn2.close().await.expect("Failed to close connection 2");
}

// ── Section 7: Arrow Conversion ───────────────────────────────────────────────

/// 7.1 INTEGER to Arrow Int64 over WebSocket.
#[tokio::test]
async fn test_ws_integer_to_arrow_int64() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.int_test (small_int INTEGER, big_int DECIMAL(18,0))",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.int_test VALUES
        (0, 0),
        (1, 1),
        (-1, -1),
        (2147483647, 999999999999999999),
        (-2147483648, -999999999999999999)
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT small_int, big_int FROM {}.int_test ORDER BY small_int",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 5, "Should have 5 rows");

    let schema = batch.schema();
    for field in schema.fields() {
        let dt = field.data_type();
        assert!(
            matches!(
                dt,
                DataType::Int64 | DataType::Int32 | DataType::Decimal128(_, _) | DataType::Float64
            ),
            "Integer columns should be numeric Arrow type, got {:?}",
            dt
        );
    }

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 7.2 VARCHAR to Arrow Utf8 over WebSocket.
#[tokio::test]
async fn test_ws_varchar_to_arrow_utf8() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.varchar_test (short_text VARCHAR(50), long_text VARCHAR(2000))",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.varchar_test VALUES
        ('Hello', 'World'),
        ('Test', 'Data with special chars: @#$%'),
        ('Unicode', 'Symbols: < > & " ''')
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT short_text, long_text FROM {}.varchar_test",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    let schema = batch.schema();

    for field in schema.fields() {
        assert!(
            matches!(field.data_type(), DataType::Utf8 | DataType::LargeUtf8),
            "VARCHAR columns should be Utf8 Arrow type, got {:?}",
            field.data_type()
        );
    }

    let short_text_col = batch.column(0);
    let string_array = short_text_col
        .as_any()
        .downcast_ref::<StringArray>()
        .expect("Should be StringArray");

    assert_eq!(string_array.len(), 3, "Should have 3 values");
    assert_eq!(string_array.value(0), "Hello");
    assert_eq!(string_array.value(1), "Test");
    assert_eq!(string_array.value(2), "Unicode");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 7.3 DECIMAL type conversion over WebSocket.
#[tokio::test]
async fn test_ws_decimal_type_conversion() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.decimal_test (price DECIMAL(10,2), quantity DECIMAL(18,4))",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.decimal_test VALUES
        (99.99, 1234.5678),
        (0.01, 0.0001),
        (-123.45, -9999.9999)
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT price, quantity FROM {}.decimal_test ORDER BY price",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 3, "Should have 3 rows");

    let schema = batch.schema();
    for field in schema.fields() {
        let dt = field.data_type();
        assert!(
            matches!(dt, DataType::Decimal128(_, _) | DataType::Float64),
            "DECIMAL columns should be Decimal128 or Float64, got {:?}",
            dt
        );
    }

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 7.4 NULL value handling over WebSocket.
#[tokio::test]
async fn test_ws_null_value_handling() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        r#"
        CREATE TABLE {}.null_test (
            id INTEGER,
            nullable_int INTEGER,
            nullable_varchar VARCHAR(100),
            nullable_decimal DECIMAL(10,2)
        )
        "#,
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.null_test VALUES
        (1, NULL, NULL, NULL),
        (2, 42, 'not null', 123.45),
        (3, NULL, 'text', NULL)
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT id, nullable_int, nullable_varchar, nullable_decimal FROM {}.null_test ORDER BY id",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 3, "Should have 3 rows");

    let nullable_int_col = batch.column(1);
    let nullable_varchar_col = batch.column(2);
    let nullable_decimal_col = batch.column(3);

    assert_eq!(
        nullable_int_col.null_count(),
        2,
        "nullable_int should have 2 nulls"
    );
    assert_eq!(
        nullable_varchar_col.null_count(),
        1,
        "nullable_varchar should have 1 null"
    );
    assert_eq!(
        nullable_decimal_col.null_count(),
        2,
        "nullable_decimal should have 2 nulls"
    );

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// 7.5 DATE/TIMESTAMP type conversion over WebSocket.
#[tokio::test]
async fn test_ws_date_timestamp_conversion() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        r#"
        CREATE TABLE {}.datetime_test (
            event_date DATE,
            event_timestamp TIMESTAMP
        )
        "#,
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.datetime_test VALUES
        (DATE '2024-01-15', TIMESTAMP '2024-01-15 10:30:00'),
        (DATE '2023-12-31', TIMESTAMP '2023-12-31 23:59:59'),
        (DATE '2000-01-01', TIMESTAMP '2000-01-01 00:00:00')
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT event_date, event_timestamp FROM {}.datetime_test ORDER BY event_date",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 3, "Should have 3 rows");

    let schema = batch.schema();

    let date_field = schema.field(0);
    assert!(
        matches!(
            date_field.data_type(),
            DataType::Date32 | DataType::Date64 | DataType::Utf8
        ),
        "DATE column should be Date32, Date64, or Utf8, got {:?}",
        date_field.data_type()
    );

    let timestamp_field = schema.field(1);
    assert!(
        matches!(
            timestamp_field.data_type(),
            DataType::Timestamp(_, _) | DataType::Date64 | DataType::Int64 | DataType::Utf8
        ),
        "TIMESTAMP column should be Timestamp, Date64, Int64, or Utf8, got {:?}",
        timestamp_field.data_type()
    );

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// BOOLEAN type conversion over WebSocket.
#[tokio::test]
async fn test_ws_boolean_type_conversion() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.bool_test (flag BOOLEAN)",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.bool_test VALUES
        (TRUE),
        (FALSE),
        (NULL)
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!("SELECT flag FROM {}.bool_test", schema_name))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 3, "Should have 3 rows");

    let schema = batch.schema();
    let bool_field = schema.field(0);
    assert_eq!(
        bool_field.data_type(),
        &DataType::Boolean,
        "BOOLEAN column should be Arrow Boolean type"
    );

    let bool_col = batch.column(0);
    let bool_array = bool_col
        .as_any()
        .downcast_ref::<BooleanArray>()
        .expect("Should be BooleanArray");

    assert!(bool_array.value(0), "First value should be true");
    assert!(!bool_array.value(1), "Second value should be false");
    assert!(bool_array.is_null(2), "Third value should be null");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// DOUBLE type conversion over WebSocket.
#[tokio::test]
async fn test_ws_double_type_conversion() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.double_test (val DOUBLE)",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.double_test VALUES
        (3.14159265358979),
        (-273.15),
        (0.0),
        (1.0E100)
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT val FROM {}.double_test ORDER BY val",
            schema_name
        ))
        .await
        .expect("SELECT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let batch = &batches[0];
    assert_eq!(batch.num_rows(), 4, "Should have 4 rows");

    let schema = batch.schema();
    let double_field = schema.field(0);
    assert_eq!(
        double_field.data_type(),
        &DataType::Float64,
        "DOUBLE column should be Arrow Float64 type"
    );

    let double_col = batch.column(0);
    let float_array = double_col
        .as_any()
        .downcast_ref::<Float64Array>()
        .expect("Should be Float64Array");

    assert_eq!(float_array.len(), 4, "Should have 4 values");
    assert!(
        float_array.value(0) < 0.0,
        "First value should be negative (ordered)"
    );

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// Large result set (1000 rows) over WebSocket.
#[tokio::test]
async fn test_ws_large_result_set() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.large_test (id INTEGER, text_data VARCHAR(100))",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.large_test (id, text_data)
        SELECT LEVEL, 'Row number ' || LEVEL
        FROM DUAL
        CONNECT BY LEVEL <= 1000
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let batches = conn
        .query(&format!(
            "SELECT COUNT(*) AS cnt FROM {}.large_test",
            schema_name
        ))
        .await
        .expect("SELECT COUNT should succeed");

    assert!(!batches.is_empty(), "Should return results");

    let all_batches = conn
        .query(&format!(
            "SELECT id, text_data FROM {}.large_test ORDER BY id",
            schema_name
        ))
        .await
        .expect("SELECT all should succeed");

    let total_rows: usize = all_batches.iter().map(|b| b.num_rows()).sum();
    assert_eq!(total_rows, 1000, "Should have 1000 total rows");

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

/// Empty result set over WebSocket.
#[tokio::test]
async fn test_ws_empty_result_set() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.empty_test (id INTEGER, name VARCHAR(100))",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    let batches = conn
        .query(&format!("SELECT id, name FROM {}.empty_test", schema_name))
        .await
        .expect("SELECT from empty table should succeed");

    let total_rows: usize = batches.iter().map(|b| b.num_rows()).sum();
    assert_eq!(total_rows, 0, "Empty table should return 0 rows");

    if !batches.is_empty() {
        let schema = batches[0].schema();
        assert_eq!(schema.fields().len(), 2, "Schema should have 2 fields");
    }

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

// ── Section 8: Prepared Statements ───────────────────────────────────────────

/// 8.1 Prepared statement lifecycle over WebSocket.
#[tokio::test]
async fn test_ws_prepared_statement_lifecycle() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let prepared = conn
        .prepare("SELECT 1")
        .await
        .expect("Failed to prepare statement");

    assert!(!prepared.is_closed());
    assert_eq!(prepared.parameter_count(), 0);

    let results = conn
        .execute_prepared(&prepared)
        .await
        .expect("Failed to execute prepared statement");

    let batches = results.fetch_all().await.expect("Failed to fetch results");
    assert!(!batches.is_empty(), "Should return at least one batch");
    assert_eq!(batches[0].num_rows(), 1, "Should return 1 row");

    conn.close_prepared(prepared)
        .await
        .expect("Failed to close prepared statement");

    conn.close().await.expect("Failed to close connection");
}

/// 8.2 Prepared statement with parameters (INSERT) over WebSocket.
#[tokio::test]
async fn test_ws_prepared_statement_with_parameters() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    let _ = conn
        .execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await;
    conn.execute_update(&format!(
        "CREATE TABLE {}.test_params (id INT, name VARCHAR(100))",
        schema_name
    ))
    .await
    .expect("Failed to create table");

    let mut prepared = conn
        .prepare(&format!(
            "INSERT INTO {}.test_params VALUES (?, ?)",
            schema_name
        ))
        .await
        .expect("Failed to prepare insert");

    assert_eq!(prepared.parameter_count(), 2);

    prepared.bind(0, 1).expect("Failed to bind param 0");
    prepared.bind(1, "Alice").expect("Failed to bind param 1");
    let rows = conn
        .execute_prepared_update(&prepared)
        .await
        .expect("Failed to execute insert");

    assert_eq!(rows, 1);

    prepared.clear_parameters();
    prepared.bind(0, 2).expect("Failed to bind param 0");
    prepared.bind(1, "Bob").expect("Failed to bind param 1");
    let rows = conn
        .execute_prepared_update(&prepared)
        .await
        .expect("Failed to execute insert");

    assert_eq!(rows, 1);

    conn.close_prepared(prepared)
        .await
        .expect("Failed to close prepared");

    let batches = conn
        .query(&format!(
            "SELECT id, name FROM {}.test_params ORDER BY id",
            schema_name
        ))
        .await
        .expect("Failed to query");

    assert!(!batches.is_empty(), "Should return results");
    assert_eq!(batches[0].num_rows(), 2);

    conn.execute_update(&format!("DROP SCHEMA {} CASCADE", schema_name))
        .await
        .expect("Failed to drop schema");
    conn.close().await.expect("Failed to close connection");
}

/// 8.3 Prepared SELECT with parameters over WebSocket.
#[tokio::test]
async fn test_ws_prepared_select_with_parameters() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    let _ = conn
        .execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await;
    conn.execute_update(&format!(
        "CREATE TABLE {}.test_select (id INT, val INT)",
        schema_name
    ))
    .await
    .expect("Failed to create table");

    conn.execute_update(&format!(
        "INSERT INTO {}.test_select VALUES (1, 100), (2, 200), (3, 300)",
        schema_name
    ))
    .await
    .expect("Failed to insert data");

    let mut prepared = conn
        .prepare(&format!(
            "SELECT val FROM {}.test_select WHERE id = ?",
            schema_name
        ))
        .await
        .expect("Failed to prepare select");

    prepared.bind(0, 2).expect("Failed to bind param");
    let results = conn
        .execute_prepared(&prepared)
        .await
        .expect("Failed to execute select");

    let batches = results.fetch_all().await.expect("Failed to fetch");
    assert!(!batches.is_empty(), "Should return results");
    assert_eq!(batches[0].num_rows(), 1);

    prepared.clear_parameters();
    prepared.bind(0, 3).expect("Failed to bind param");
    let results = conn
        .execute_prepared(&prepared)
        .await
        .expect("Failed to execute select");

    let batches = results.fetch_all().await.expect("Failed to fetch");
    assert!(!batches.is_empty(), "Should return results");
    assert_eq!(batches[0].num_rows(), 1);

    conn.close_prepared(prepared)
        .await
        .expect("Failed to close prepared");

    conn.execute_update(&format!("DROP SCHEMA {} CASCADE", schema_name))
        .await
        .expect("Failed to drop schema");
    conn.close().await.expect("Failed to close connection");
}

/// 8.4 Prepared statement parameter types over WebSocket.
#[allow(clippy::approx_constant)]
#[tokio::test]
async fn test_ws_prepared_statement_parameter_types() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    let _ = conn
        .execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await;
    conn.execute_update(&format!(
        "CREATE TABLE {}.test_types (
            bool_col BOOLEAN,
            int_col INTEGER,
            float_col DOUBLE,
            str_col VARCHAR(100)
        )",
        schema_name
    ))
    .await
    .expect("Failed to create table");

    let mut prepared = conn
        .prepare(&format!(
            "INSERT INTO {}.test_types VALUES (?, ?, ?, ?)",
            schema_name
        ))
        .await
        .expect("Failed to prepare");

    prepared.bind(0, true).expect("Failed to bind bool");
    prepared.bind(1, 42i64).expect("Failed to bind int");
    prepared.bind(2, 3.14f64).expect("Failed to bind float");
    prepared.bind(3, "hello").expect("Failed to bind string");

    let rows = conn
        .execute_prepared_update(&prepared)
        .await
        .expect("Failed to execute");

    assert_eq!(rows, 1);
    conn.close_prepared(prepared)
        .await
        .expect("Failed to close");

    let batches = conn
        .query(&format!("SELECT * FROM {}.test_types", schema_name))
        .await
        .expect("Failed to query");

    assert!(!batches.is_empty(), "Should return results");
    assert_eq!(batches[0].num_rows(), 1);

    conn.execute_update(&format!("DROP SCHEMA {} CASCADE", schema_name))
        .await
        .expect("Failed to drop schema");
    conn.close().await.expect("Failed to close connection");
}

// ── Section 9: WebSocket Regression ──────────────────────────────────────────

/// Large result set exceeding default 16 MiB WebSocket frame limit, over WebSocket.
#[tokio::test]
async fn test_ws_large_result_set_exceeds_default_frame_limit() {
    skip_if_no_exasol!();

    let mut conn = get_ws_connection().await.expect("Failed to connect");

    let schema_name = generate_test_schema_name();

    conn.execute_update(&format!("CREATE SCHEMA {}", schema_name))
        .await
        .expect("CREATE SCHEMA should succeed");

    conn.execute_update(&format!(
        "CREATE TABLE {}.wide_test (
            id INTEGER,
            col1 VARCHAR(1000),
            col2 VARCHAR(1000),
            col3 VARCHAR(1000),
            col4 VARCHAR(1000),
            col5 VARCHAR(1000)
        )",
        schema_name
    ))
    .await
    .expect("CREATE TABLE should succeed");

    conn.execute_update(&format!(
        r#"
        INSERT INTO {}.wide_test (id, col1, col2, col3, col4, col5)
        SELECT
            LEVEL,
            LPAD('A', 200, 'A'),
            LPAD('B', 200, 'B'),
            LPAD('C', 200, 'C'),
            LPAD('D', 200, 'D'),
            LPAD('E', 200, 'E')
        FROM DUAL
        CONNECT BY LEVEL <= 20000
        "#,
        schema_name
    ))
    .await
    .expect("INSERT should succeed");

    let all_batches = conn
        .query(&format!(
            "SELECT id, col1, col2, col3, col4, col5 FROM {}.wide_test",
            schema_name
        ))
        .await
        .expect("SELECT all rows should succeed (must handle frames > 16 MiB)");

    let total_rows: usize = all_batches.iter().map(|b| b.num_rows()).sum();
    assert_eq!(
        total_rows, 20000,
        "Should have all 20,000 rows returned despite large frame size"
    );

    ws_cleanup_schema(&mut conn, &schema_name).await;
    conn.close().await.expect("Failed to close connection");
}

// ── Certificate fingerprint tests ────────────────────────────────────────────

/// Connect with wrong fingerprint over WebSocket — error should expose the actual fingerprint.
#[tokio::test]
async fn test_ws_connect_with_wrong_fingerprint_fails() {
    skip_if_no_exasol!();

    let conn_str = format!(
        "exasol://{}:{}@{}:{}?tls=true&certificate_fingerprint=0000000000000000000000000000000000000000000000000000000000000000&transport=websocket",
        get_user(),
        get_password(),
        get_host(),
        get_port(),
    );

    let driver = Driver::new();
    let database = driver.open(&conn_str).expect("open should succeed");
    let result = database.connect().await;

    assert!(
        result.is_err(),
        "Connection with wrong fingerprint should fail"
    );

    let err_msg = result.unwrap_err().to_string();
    let hex_chars: String = err_msg.chars().filter(|c| c.is_ascii_hexdigit()).collect();
    assert!(
        hex_chars.len() >= 64,
        "Error message should contain a 64-char SHA-256 hex fingerprint, got: {}",
        err_msg
    );
}

/// Connect with a discovered certificate fingerprint over WebSocket.
#[tokio::test]
async fn test_ws_connect_with_certificate_fingerprint() {
    skip_if_no_exasol!();

    let conn_str_wrong = format!(
        "exasol://{}:{}@{}:{}?tls=true&certificate_fingerprint=placeholder&transport=websocket",
        get_user(),
        get_password(),
        get_host(),
        get_port(),
    );

    let driver = Driver::new();
    let database = driver.open(&conn_str_wrong).expect("open should succeed");
    let result = database.connect().await;

    assert!(
        result.is_err(),
        "Connection with placeholder fingerprint should fail"
    );

    let err_msg = result.unwrap_err().to_string();

    let actual_fingerprint = err_msg
        .split("got ")
        .nth(1)
        .map(|s| s.trim().to_string())
        .expect("Error message should contain 'got <fingerprint>'");

    assert_eq!(
        actual_fingerprint.len(),
        64,
        "Actual fingerprint should be 64 hex chars, got: '{}'",
        actual_fingerprint
    );

    let conn_str_pinned = format!(
        "exasol://{}:{}@{}:{}?tls=true&certificate_fingerprint={}&transport=websocket",
        get_user(),
        get_password(),
        get_host(),
        get_port(),
        actual_fingerprint,
    );

    let database2 = driver.open(&conn_str_pinned).expect("open should succeed");
    let conn = database2
        .connect()
        .await
        .expect("Connection with correct fingerprint should succeed");

    assert!(
        !conn.is_closed().await,
        "Connection should be open after fingerprint-pinned connect"
    );

    conn.close().await.expect("Failed to close connection");
}