apexbase 1.23.0

High-performance HTAP embedded database with Rust core
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
"""
Comprehensive test suite for ApexBase Data Storage Operations

This module tests:
- Single record storage (dict)
- Batch storage (list of dicts)
- Columnar storage (Dict[str, list])
- NumPy array storage
- Pandas DataFrame storage
- Polars DataFrame storage
- PyArrow Table storage
- Edge cases and error handling
- Performance considerations
"""

import pytest
import tempfile
import shutil
from pathlib import Path
import sys
import os
import subprocess
import threading
import time
import numpy as np
from datetime import datetime, date
from decimal import Decimal

# Add the apexbase python module to path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'apexbase', 'python'))

try:
    from apexbase import ApexClient, ARROW_AVAILABLE, POLARS_AVAILABLE
except ImportError as e:
    pytest.skip(f"ApexBase not available: {e}", allow_module_level=True)

# Optional imports
try:
    import pandas as pd
    PANDAS_AVAILABLE = True
except ImportError:
    PANDAS_AVAILABLE = False

try:
    import polars as pl
    POLARS_DF_AVAILABLE = True
except ImportError:
    POLARS_DF_AVAILABLE = False

try:
    import pyarrow as pa
    PYARROW_AVAILABLE = True
except ImportError:
    PYARROW_AVAILABLE = False


class TestSingleRecordStorage:
    """Test single record storage (dict format)"""

    PERSON_SCHEMA = {"name": "str", "age": "int", "score": "float", "city": "str"}
    STREAM_SCHEMA = {"name": "str", "seq": "int", "bucket": "str", "score": "float"}
    
    def test_store_single_dict_basic(self):
        """Test storing a single basic dictionary"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {"name": "Alice", "age": 25, "city": "NYC"}
            client.store(data)
            
            # Verify storage
            count = client.count_rows()
            assert count == 1
            
            result = client.retrieve(1)
            assert result["name"] == "Alice"
            assert result["age"] == 25
            assert result["city"] == "NYC"
            
            client.close()

    def test_buffered_single_dict_flush_visibility(self):
        """Buffered writes are explicit and become visible after flush."""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")

            client.store({"name": "seed", "age": 1})
            client.begin_buffered_writes()
            client.store({"name": "buffered", "age": 2})

            assert client.buffered_write_count() == 1
            assert client.count_rows() == 1

            assert client.flush_buffered_writes() == 1
            assert client.buffered_write_count() == 0
            assert client.count_rows() == 2
            assert client.retrieve(2)["name"] == "buffered"

            client.end_buffered_writes(flush=False)
            client.close()

    def test_buffered_single_dict_close_flushes(self):
        """Closing a client flushes pending buffered rows."""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            client.begin_buffered_writes()
            client.store({"name": "close_flush", "age": 3})
            assert client.buffered_write_count() == 1
            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 1
            assert reopened.retrieve(1)["name"] == "close_flush"
            reopened.close()

    def test_experimental_delta_single_dict_read_after_write(self, monkeypatch):
        """Experimental delta writes preserve same-client read-after-write semantics."""
        monkeypatch.setenv("APEXBASE_EXPERIMENTAL_DELTA_SINGLE_WRITE", "1")
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            client.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            client.store({"name": "delta", "age": 2, "score": 2.0, "city": "SH"})

            assert client.count_rows() == 2
            assert client.retrieve(2)["name"] == "delta"
            result = client.execute(
                "SELECT name, age, score FROM default WHERE _id = 2"
            ).to_dict()
            assert result == [{"name": "delta", "age": 2, "score": 2.0}]

            client.store({"name": "after_read", "age": 3, "score": 3.0, "city": "GZ"})
            assert client.count_rows() == 3
            assert client.retrieve(3)["name"] == "after_read"
            client.close()

    def test_experimental_memtable_single_dict_flush_reopen(self, monkeypatch):
        """Experimental memtable writes are readable immediately and persist on flush."""
        monkeypatch.setenv("APEXBASE_EXPERIMENTAL_MEMTABLE_SINGLE_WRITE", "1")
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            client.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            client.store({"name": "memtable", "age": 2, "score": 2.0, "city": "SH"})

            assert client.retrieve(2)["name"] == "memtable"
            result = client.execute(
                "SELECT name, age, score FROM default WHERE _id = 2"
            ).to_dict()
            assert result == [{"name": "memtable", "age": 2, "score": 2.0}]

            client.flush()
            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 2
            assert reopened.retrieve(2)["name"] == "memtable"
            reopened.close()

    def test_memtable_single_dict_close_persists_without_prior_read(self, monkeypatch):
        """Closing a client flushes pending memtable rows even without a broad read."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default")
            client.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            client.store({"name": "close_memtable", "age": 2, "score": 2.0, "city": "SH"})
            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 2
            assert reopened.retrieve(2)["name"] == "close_memtable"
            reopened.close()

    def test_memtable_visibility_same_process_shared_client(self, monkeypatch):
        """Default managed clients in one process share the storage instance."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            writer = ApexClient(dirpath=temp_dir, durability="fast")
            writer.create_table("default", schema=self.PERSON_SCHEMA)
            writer.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            writer.store({"name": "shared_memtable", "age": 2, "score": 2.0, "city": "SH"})

            reader = ApexClient(dirpath=temp_dir, durability="fast")
            reader.use_table("default")
            assert reader.retrieve(2)["name"] == "shared_memtable"
            assert reader.count_rows() == 2

            reader.close()
            writer.close()

    _CROSS_PROCESS_SNAPSHOT_SCRIPT = """
import sys
from apexbase import ApexClient

db_dir = sys.argv[1]
client = ApexClient(db_dir)
client.use_table("default")
count = client.count_rows()
row = client.retrieve(2)
client.close()
print(count, flush=True)
print(row, flush=True)
"""

    def _run_cross_process_snapshot(self, db_dir: str, env: dict, timeout: float = 30):
        result = subprocess.run(
            [sys.executable, "-c", self._CROSS_PROCESS_SNAPSHOT_SCRIPT, db_dir],
            capture_output=True,
            text=True,
            timeout=timeout,
            env=env,
        )
        assert result.returncode == 0, result.stderr or result.stdout
        lines = [line.strip() for line in result.stdout.splitlines() if line.strip()]
        assert len(lines) == 2, result.stdout
        return lines[0], lines[1]

    def test_memtable_visibility_cross_process_requires_flush(self, monkeypatch):
        """A separate process cannot see pending memtable rows until the writer flushes."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            writer = ApexClient(dirpath=temp_dir, durability="fast")
            writer.create_table("default", schema=self.PERSON_SCHEMA)
            writer.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            writer.store({"name": "pending_memtable", "age": 2, "score": 2.0, "city": "SH"})

            env = os.environ.copy()
            python_path = os.path.join(os.path.dirname(__file__), '..', 'apexbase', 'python')
            env["PYTHONPATH"] = python_path + os.pathsep + env.get("PYTHONPATH", "")

            before_count, before_row = self._run_cross_process_snapshot(temp_dir, env)
            assert before_count == "1"
            assert before_row == "None"

            writer.flush()

            after_count, after_row = self._run_cross_process_snapshot(temp_dir, env)
            assert after_count == "2"
            assert "pending_memtable" in after_row

            writer.close()

    def test_fast_single_dict_memtable_overlays_broad_reads(self, monkeypatch):
        """Default fast single-row writes stay visible without broad-read flushes."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default", schema=self.PERSON_SCHEMA)
            client.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            client.store({"name": "m2", "age": 2, "score": 2.0, "city": "SH"})

            assert client.retrieve(2)["name"] == "m2"
            assert client._storage.has_pending_memtable_rows() is True
            assert client.count_rows() == 2
            assert client._storage.has_pending_memtable_rows() is True
            result = client.execute(
                "SELECT * FROM default WHERE name = 'm2'",
                show_internal_id=True,
            ).to_dict()
            assert result == [{
                "_id": 2,
                "age": 2,
                "score": 2.0,
                "city": "SH",
                "name": "m2",
            }]
            assert client._storage.has_pending_memtable_rows() is True

            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 2
            assert reopened.retrieve(2)["name"] == "m2"
            reopened.close()

    def test_fast_delete_pending_memtable_row_overlay(self, monkeypatch):
        """Fast delete hides an unflushed memtable row without forcing a table save."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default", schema=self.PERSON_SCHEMA)
            client.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            client.store({"name": "pending_delete", "age": 2, "score": 2.0, "city": "SH"})
            assert client._storage.has_pending_memtable_rows() is True
            assert client.retrieve(2)["name"] == "pending_delete"

            assert client.delete(2) is True
            assert client.count_rows() == 1
            assert client.retrieve(2) is None
            assert client.execute("SELECT name FROM default WHERE _id = 2").to_dict() == []
            assert client._storage.has_pending_memtable_rows() is True

            client.flush()
            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 1
            assert reopened.retrieve(1)["name"] == "seed"
            assert reopened.retrieve(2) is None
            reopened.close()

    def test_fast_delete_then_sql_update_same_id_stays_deleted(self, monkeypatch):
        """Deleting a row must not let a later SQL UPDATE resurrect it."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default")
            client.store({"name": ["seed"], "age": [1], "score": [1.0], "city": ["BJ"]})

            assert client.retrieve(1)["name"] == "seed"
            assert client.delete(1) is True
            assert client.count_rows() == 0
            assert client.retrieve(1) is None

            updated = client.execute(
                "UPDATE default SET score = 9.0 WHERE _id = 1"
            ).scalar()
            assert updated == 0
            assert client.count_rows() == 0
            assert client.retrieve(1) is None

            client.flush()
            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 0
            assert reopened.retrieve(1) is None
            reopened.close()

    def test_fast_replace_exact_schema_uses_delta_overlay(self, monkeypatch):
        """Fast replace overlays an exact-schema row and persists on flush."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default")
            client.store({
                "name": ["alice", "bob"],
                "age": [25, 30],
                "score": [10.0, 20.0],
                "city": ["BJ", "SH"],
            })

            assert client.replace(1, {
                "name": "alice2",
                "age": 26,
                "score": 11.5,
                "city": "GZ",
            }) is True
            assert client.count_rows() == 2
            assert client.retrieve(1)["name"] == "alice2"
            rows = client.execute(
                "SELECT name, age, score, city FROM default WHERE _id = 1"
            ).to_dict()
            assert rows == [{"name": "alice2", "age": 26, "score": 11.5, "city": "GZ"}]

            client.flush()
            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 2
            assert reopened.retrieve(1)["name"] == "alice2"
            assert reopened.retrieve(2)["name"] == "bob"
            reopened.close()

    def test_fast_overlay_survives_memtable_append(self, monkeypatch):
        """Pending delete/replace overlays remain visible after a memtable append."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default", schema=self.PERSON_SCHEMA)
            client.store({
                "name": ["alice", "bob", "charlie"],
                "age": [25, 30, 35],
                "score": [10.0, 20.0, 30.0],
                "city": ["BJ", "SH", "GZ"],
            })

            assert client.delete(2) is True
            assert client.replace(1, {
                "name": "alice2",
                "age": 26,
                "score": 11.5,
                "city": "SZ",
            }) is True

            client.store({"name": "diana", "age": 28, "score": 40.0, "city": "HZ"})

            assert client._storage.has_pending_memtable_rows() is True
            assert client.count_rows() == 3
            assert client.retrieve(1)["name"] == "alice2"
            assert client.retrieve(2) is None
            assert client.retrieve(4)["name"] == "diana"
            rows = client.retrieve_all()
            assert {row["name"] for row in rows} == {"alice2", "charlie", "diana"}

            client.flush()
            client.close()

            reopened = ApexClient(dirpath=temp_dir)
            reopened.use_table("default")
            assert reopened.count_rows() == 3
            assert reopened.retrieve(1)["name"] == "alice2"
            assert reopened.retrieve(2) is None
            assert reopened.retrieve(4)["name"] == "diana"
            reopened.close()

    def test_memtable_continuous_write_read_interleaving(self, monkeypatch):
        """A tight write/read loop sees pending rows without flushing them."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default", schema=self.STREAM_SCHEMA)
            client.store({
                "name": ["seed_0", "seed_1"],
                "seq": [0, 1],
                "bucket": ["base", "base"],
                "score": [0.0, 1.0],
            })

            for seq in range(2, 22):
                bucket = "even" if seq % 2 == 0 else "odd"
                client.store({
                    "name": f"live_{seq}",
                    "seq": seq,
                    "bucket": bucket,
                    "score": float(seq),
                })

                assert client._storage.has_pending_memtable_rows() is True
                assert client.count_rows() == seq + 1
                assert client.execute("SELECT COUNT(*) AS cnt FROM default").to_dict()[0]["cnt"] == seq + 1

                point = client.execute(
                    f"SELECT name, seq, bucket FROM default WHERE seq = {seq}"
                ).to_dict()
                assert point == [{"name": f"live_{seq}", "seq": seq, "bucket": bucket}]

                latest = client.retrieve(seq + 1)
                assert latest["name"] == f"live_{seq}"
                assert latest["seq"] == seq

            grouped = client.execute(
                "SELECT bucket, COUNT(*) AS cnt FROM default GROUP BY bucket ORDER BY bucket"
            ).to_dict()
            assert {row["bucket"]: row["cnt"] for row in grouped} == {
                "base": 2,
                "even": 10,
                "odd": 10,
            }

            top = client.execute(
                "SELECT name, seq FROM default ORDER BY seq DESC LIMIT 3"
            ).to_dict()
            assert [row["seq"] for row in top] == [21, 20, 19]
            assert client._storage.has_pending_memtable_rows() is True

            client.close()

    def test_memtable_intermittent_reads_during_write_burst(self, monkeypatch):
        """Intermittent analytical reads during a write burst include memtable rows."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default", schema=self.STREAM_SCHEMA)
            client.store({
                "name": ["base_0", "base_1", "base_2"],
                "seq": [0, 1, 2],
                "bucket": ["cold", "hot", "cold"],
                "score": [0.0, 1.0, 2.0],
            })

            written = [
                {"name": "base_0", "seq": 0, "bucket": "cold", "score": 0.0},
                {"name": "base_1", "seq": 1, "bucket": "hot", "score": 1.0},
                {"name": "base_2", "seq": 2, "bucket": "cold", "score": 2.0},
            ]
            checkpoints = {3, 4, 10, 20, 32}

            for seq in range(3, 33):
                row = {
                    "name": f"live_{seq}",
                    "seq": seq,
                    "bucket": "hot" if seq % 3 == 0 else "cold",
                    "score": float(seq),
                }
                client.store(row)
                written.append(row)

                if seq in checkpoints:
                    assert client.count_rows() == len(written)
                    hot_expected = sum(1 for item in written if item["bucket"] == "hot")
                    hot_count = client.execute(
                        "SELECT COUNT(*) AS cnt FROM default WHERE bucket = 'hot'"
                    ).to_dict()[0]["cnt"]
                    assert hot_count == hot_expected

                    ranged = client.execute(
                        "SELECT seq FROM default WHERE seq BETWEEN 8 AND 12 ORDER BY seq"
                    ).to_dict()
                    expected_range = [
                        item["seq"] for item in written if 8 <= item["seq"] <= 12
                    ]
                    assert [item["seq"] for item in ranged] == expected_range
                    assert client._storage.has_pending_memtable_rows() is True

            like_rows = client.execute(
                "SELECT seq FROM default WHERE name LIKE 'live_1%' ORDER BY seq"
            ).to_dict()
            assert [row["seq"] for row in like_rows] == list(range(10, 20))
            assert client._storage.has_pending_memtable_rows() is True

            client.close()

    def test_memtable_later_same_process_sql_reader_before_flush(self, monkeypatch):
        """A later same-process reader sees unflushed rows through SQL overlay."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            writer = ApexClient(dirpath=temp_dir, durability="fast")
            writer.create_table("default", schema=self.STREAM_SCHEMA)
            writer.store({
                "name": ["base_0", "base_1"],
                "seq": [0, 1],
                "bucket": ["base", "base"],
                "score": [0.0, 1.0],
            })

            for seq in range(2, 7):
                writer.store({
                    "name": f"pending_{seq}",
                    "seq": seq,
                    "bucket": "pending",
                    "score": float(seq),
                })

            assert writer._storage.has_pending_memtable_rows() is True

            reader = ApexClient(dirpath=temp_dir, durability="fast")
            reader.use_table("default")

            assert reader.count_rows() == 7
            assert reader.execute(
                "SELECT COUNT(*) AS cnt FROM default WHERE bucket = 'pending'"
            ).to_dict()[0]["cnt"] == 5
            assert reader.execute(
                "SELECT name FROM default WHERE seq = 6"
            ).to_dict() == [{"name": "pending_6"}]
            assert reader.execute(
                "SELECT seq FROM default ORDER BY seq DESC LIMIT 2"
            ).to_dict() == [{"seq": 6}, {"seq": 5}]
            assert writer._storage.has_pending_memtable_rows() is True

            reader.close()
            writer.close()

    def test_memtable_concurrent_write_stream_and_reader_loop(self, monkeypatch):
        """Concurrent readers observe a monotonic in-process view of pending writes."""
        monkeypatch.delenv("APEXBASE_DISABLE_MEMTABLE_SINGLE_WRITE", raising=False)
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir, durability="fast")
            client.create_table("default", schema=self.STREAM_SCHEMA)
            client.store({
                "name": ["seed"],
                "seq": [0],
                "bucket": ["base"],
                "score": [0.0],
            })

            total_writes = 40
            first_write = threading.Event()
            done = threading.Event()
            errors = []
            observed_counts = []

            def writer():
                try:
                    for seq in range(1, total_writes + 1):
                        client.store({
                            "name": f"live_{seq}",
                            "seq": seq,
                            "bucket": f"b{seq % 4}",
                            "score": float(seq),
                        })
                        first_write.set()
                        if seq % 5 == 0:
                            time.sleep(0.001)
                except Exception as exc:
                    errors.append(f"writer: {exc!r}")
                finally:
                    done.set()

            def reader():
                if not first_write.wait(timeout=2):
                    errors.append("reader: writer did not start")
                    return

                last_count = 0
                deadline = time.time() + 5
                try:
                    while not done.is_set() and time.time() < deadline:
                        count = client.execute(
                            "SELECT COUNT(*) AS cnt FROM default"
                        ).to_dict()[0]["cnt"]
                        if count < last_count:
                            errors.append(f"reader: count moved backward {last_count}->{count}")
                            return
                        last_count = count
                        observed_counts.append(count)
                        time.sleep(0.0005)
                    if not done.is_set():
                        errors.append("reader: timed out waiting for writer")
                except Exception as exc:
                    errors.append(f"reader: {exc!r}")

            reader_thread = threading.Thread(target=reader, daemon=True)
            writer_thread = threading.Thread(target=writer, daemon=True)
            reader_thread.start()
            writer_thread.start()
            writer_thread.join(timeout=5)
            reader_thread.join(timeout=5)

            if writer_thread.is_alive() or reader_thread.is_alive():
                errors.append("threads did not finish within timeout")
            assert errors == []
            assert observed_counts

            final_count = client.execute(
                "SELECT COUNT(*) AS cnt FROM default"
            ).to_dict()[0]["cnt"]
            assert final_count == total_writes + 1
            grouped = client.execute(
                "SELECT bucket, COUNT(*) AS cnt FROM default GROUP BY bucket"
            ).to_dict()
            assert sum(row["cnt"] for row in grouped) == final_count
            assert client.execute(
                f"SELECT name FROM default WHERE seq = {total_writes}"
            ).to_dict() == [{"name": f"live_{total_writes}"}]
            assert client._storage.has_pending_memtable_rows() is True

            client.close()
    
    def test_store_single_dict_all_types(self):
        """Test storing dict with all supported data types"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "string_field": "test_string",
                "int_field": 42,
                "float_field": 3.14159,
                "bool_field": True,
                "none_field": None,
                "bytes_field": b"binary_data",
                "negative_int": -100,
                "zero_float": 0.0,
                "empty_string": "",
                "false_bool": False,
            }
            
            client.store(data)
            
            result = client.retrieve(1)
            assert result["string_field"] == "test_string"
            assert result["int_field"] == 42
            assert result["float_field"] == 3.14159
            assert result["bool_field"] is True
            assert result["none_field"] is None
            assert result["bytes_field"] == b"binary_data"
            assert result["negative_int"] == -100
            assert result["zero_float"] == 0.0
            assert result["empty_string"] == ""
            assert result["false_bool"] is False
            
            client.close()
    
    def test_store_single_dict_special_values(self):
        """Test storing dict with special values"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Test with very large numbers
            data = {
                "large_int": 2**63 - 1,  # Max 64-bit int
                "small_float": 1e-10,
                "large_float": 1e10,
                "infinity": float('inf'),
                "neg_infinity": float('-inf'),
            }
            
            client.store(data)
            result = client.retrieve(1)
            
            assert result["large_int"] == 2**63 - 1
            assert abs(result["small_float"] - 1e-10) < 1e-15
            assert abs(result["large_float"] - 1e10) < 1e-5
            # Note: infinity might be handled differently
            
            client.close()
    
    def test_store_empty_dict(self):
        """Test storing empty dictionary"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            client.store({})
            
            count = client.count_rows()
            assert count == 1
            
            result = client.retrieve(1)
            assert result == {} or result == {"_id": 1}  # May include auto-generated ID
            
            client.close()
    
    def test_store_dict_with_unicode(self):
        """Test storing dict with unicode characters"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "chinese": "你好世界",
                "emoji": "🌍🚀",
                "arabic": "مرحبا بالعالم",
                "russian": "Привет мир",
                "french": "Bonjour le monde",
            }
            
            client.store(data)
            result = client.retrieve(1)
            
            for key, value in data.items():
                assert result[key] == value
            
            client.close()


class TestBatchStorage:
    """Test batch storage (list of dicts)"""
    
    def test_store_list_of_dicts_basic(self):
        """Test storing list of basic dictionaries"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = [
                {"name": "Alice", "age": 25},
                {"name": "Bob", "age": 30},
                {"name": "Charlie", "age": 35},
            ]
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            names = [r["name"] for r in results]
            assert "Alice" in names
            assert "Bob" in names
            assert "Charlie" in names
            
            client.close()
    
    def test_store_empty_list(self):
        """Test storing empty list"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            client.store([])
            
            count = client.count_rows()
            assert count == 0
            
            client.close()
    
    def test_store_list_with_various_types(self):
        """Test storing list with mixed data types"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = [
                {"type": "string", "value": "test"},
                {"type": "int", "value": 42},
                {"type": "float", "value": 3.14},
                {"type": "bool", "value": True},
                {"type": "none", "value": None},
                {"type": "bytes", "value": b"binary"},
            ]
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 6
            
            results = client.retrieve_all()
            types = [r["type"] for r in results]
            assert len(types) == 6
            assert "string" in types
            assert "int" in types
            
            client.close()
    
    def test_store_list_with_missing_fields(self):
        """Test storing list where some dicts have missing fields"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = [
                {"name": "Alice", "age": 25, "city": "NYC"},
                {"name": "Bob", "age": 30},  # Missing city
                {"name": "Charlie", "city": "LA"},  # Missing age
                {"age": 40},  # Missing name
            ]
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 4
            
            results = client.retrieve_all()
            assert len(results) == 4
            
            client.close()
    
    def test_store_large_list(self):
        """Test storing large list of records"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Generate 1000 records
            data = [{"id": i, "value": f"record_{i}"} for i in range(1000)]
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 1000
            
            # Test a few records
            result_0 = client.retrieve(1)
            assert result_0["id"] == 0
            assert result_0["value"] == "record_0"
            
            result_999 = client.retrieve(1000)
            assert result_999["id"] == 999
            assert result_999["value"] == "record_999"
            
            client.close()


class TestColumnarStorage:
    """Test columnar storage (Dict[str, list])"""
    
    def test_store_columnar_basic(self):
        """Test basic columnar storage"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "names": ["Alice", "Bob", "Charlie"],
                "ages": [25, 30, 35],
                "cities": ["NYC", "LA", "Chicago"],
            }
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            names = [r["names"] for r in results]
            assert "Alice" in names
            assert "Bob" in names
            assert "Charlie" in names
            
            client.close()
    
    def test_store_columnar_mixed_types(self):
        """Test columnar storage with mixed data types"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "strings": ["a", "b", "c"],
                "integers": [1, 2, 3],
                "floats": [1.1, 2.2, 3.3],
                "booleans": [True, False, True],
                "bytes_data": [b"x", b"y", b"z"],
            }
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()
    
    def test_store_columnar_empty_columns(self):
        """Test columnar storage with empty columns - should raise error for mismatched lengths"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "empty_list": [],
                "non_empty": [1, 2, 3],
            }
            
            # Mismatched lengths should raise ValueError
            with pytest.raises(ValueError, match="same length"):
                client.store(data)
            
            client.close()
    
    def test_store_columnar_unequal_lengths(self):
        """Test columnar storage with unequal column lengths - should raise error"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Different lengths - should raise ValueError
            data = {
                "short": [1, 2],
                "long": [1, 2, 3, 4, 5],
            }
            
            with pytest.raises(ValueError, match="same length"):
                client.store(data)
            
            client.close()
    
    def test_store_columnar_single_value(self):
        """Test columnar storage with single value"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "single": ["only_value"],
            }
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 1
            
            result = client.retrieve(1)
            assert result["single"] == "only_value"
            
            client.close()


@pytest.mark.skipif(not hasattr(np, 'array'), reason="NumPy not available")
class TestNumPyStorage:
    """Test NumPy array storage"""
    
    def test_store_numpy_numeric(self):
        """Test storing NumPy numeric arrays"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "int_array": np.array([1, 2, 3, 4, 5], dtype=np.int64),
                "float_array": np.array([1.1, 2.2, 3.3, 4.4, 5.5], dtype=np.float64),
                "bool_array": np.array([True, False, True, False, True], dtype=np.bool_),
            }
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 5
            
            results = client.retrieve_all()
            assert len(results) == 5
            
            client.close()
    
    def test_store_numpy_mixed_dtypes(self):
        """Test storing NumPy arrays with mixed dtypes"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "int32": np.array([1, 2, 3], dtype=np.int32),
                "int64": np.array([100, 200, 300], dtype=np.int64),
                "float32": np.array([1.1, 2.2, 3.3], dtype=np.float32),
                "float64": np.array([10.1, 20.2, 30.3], dtype=np.float64),
            }
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()
    
    def test_store_numpy_large_arrays(self):
        """Test storing large NumPy arrays"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Large arrays for performance testing
            size = 10000
            data = {
                "large_int": np.arange(size, dtype=np.int64),
                "large_float": np.random.random(size).astype(np.float64),
            }
            
            client.store(data)
            
            count = client.count_rows()
            assert count == size
            
            # Test a few values
            result_0 = client.retrieve(1)
            assert result_0["large_int"] == 0
            
            result_last = client.retrieve(size)
            assert result_last["large_int"] == size - 1
            
            client.close()
    
    def test_store_numpy_string_arrays(self):
        """Test storing NumPy string arrays"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Arrays must have same length for columnar storage
            data = {
                "string_array": np.array(["a", "b", "c", "d"], dtype=str),
                "unicode_array": np.array(["测试", "🚀", "café", "日本語"], dtype=str),
            }
            
            client.store(data)
            
            count = client.count_rows()
            assert count == 4
            
            results = client.retrieve_all()
            assert len(results) == 4
            
            client.close()


@pytest.mark.skipif(not PANDAS_AVAILABLE, reason="Pandas not available")
class TestPandasStorage:
    """Test Pandas DataFrame storage"""
    
    def test_store_pandas_basic(self):
        """Test storing basic Pandas DataFrame"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            df = pd.DataFrame({
                "name": ["Alice", "Bob", "Charlie"],
                "age": [25, 30, 35],
                "city": ["NYC", "LA", "Chicago"],
            })
            
            client.store(df)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()
    
    def test_store_pandas_mixed_dtypes(self):
        """Test storing Pandas DataFrame with mixed dtypes"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            df = pd.DataFrame({
                "strings": ["a", "b", "c"],
                "integers": pd.Series([1, 2, 3], dtype="int64"),
                "floats": pd.Series([1.1, 2.2, 3.3], dtype="float64"),
                "booleans": pd.Series([True, False, True], dtype="bool"),
                "datetime": pd.date_range("2023-01-01", periods=3),
            })
            
            client.store(df)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()
    
    def test_store_pandas_empty(self):
        """Test storing empty Pandas DataFrame"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            df = pd.DataFrame()
            
            client.store(df)
            
            count = client.count_rows()
            assert count == 0
            
            client.close()
    
    def test_store_pandas_with_nan(self):
        """Test storing Pandas DataFrame with NaN values"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # NaN handling may vary - use DataFrame without NaN for basic test
            df = pd.DataFrame({
                "col1": [1, 2, 3, 4],
                "col2": ["a", "b", "c", "d"],
            })
            
            try:
                client.store(df)
                count = client.count_rows()
                assert count == 4
            except TypeError as e:
                # NaN handling may cause issues
                print(f"Pandas NaN: {e}")
            
            client.close()
    
    def test_from_pandas_method(self):
        """Test from_pandas convenience method"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            df = pd.DataFrame({
                "product": ["A", "B", "C"],
                "price": [10.99, 20.50, 30.75],
            })
            
            returned_client = client.from_pandas(df)
            
            # Should return self for chaining
            assert returned_client is client
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()


@pytest.mark.skipif(not POLARS_DF_AVAILABLE, reason="Polars not available")
class TestPolarsStorage:
    """Test Polars DataFrame storage"""
    
    def test_store_polars_basic(self):
        """Test storing basic Polars DataFrame"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            df = pl.DataFrame({
                "name": ["Alice", "Bob", "Charlie"],
                "age": [25, 30, 35],
                "city": ["NYC", "LA", "Chicago"],
            })
            
            # Polars storage may have compatibility issues
            try:
                client.store(df)
                count = client.count_rows()
                assert count == 3
            except (AttributeError, TypeError) as e:
                # Known issue with Polars/Arrow compatibility
                print(f"Polars storage issue: {e}")
            
            client.close()
    
    def test_store_polars_mixed_dtypes(self):
        """Test storing Polars DataFrame with mixed dtypes"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            df = pl.DataFrame({
                "strings": ["a", "b", "c"],
                "integers": pl.Series("integers", [1, 2, 3], dtype=pl.Int64),
                "floats": pl.Series("floats", [1.1, 2.2, 3.3], dtype=pl.Float64),
                "booleans": pl.Series("booleans", [True, False, True], dtype=pl.Boolean),
            })
            
            # Polars storage may have compatibility issues
            try:
                client.store(df)
                count = client.count_rows()
                assert count == 3
            except (AttributeError, TypeError) as e:
                # Known issue with Polars/Arrow compatibility
                print(f"Polars mixed dtypes issue: {e}")
            
            client.close()
    
    def test_from_polars_method(self):
        """Test from_polars convenience method"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            df = pl.DataFrame({
                "id": [1, 2, 3],
                "value": ["x", "y", "z"],
            })
            
            returned_client = client.from_polars(df)
            
            # Should return self for chaining
            assert returned_client is client
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()


@pytest.mark.skipif(not PYARROW_AVAILABLE, reason="PyArrow not available")
class TestPyArrowStorage:
    """Test PyArrow Table storage"""
    
    def test_store_arrow_basic(self):
        """Test storing basic PyArrow Table"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            table = pa.Table.from_pydict({
                "name": ["Alice", "Bob", "Charlie"],
                "age": [25, 30, 35],
                "city": ["NYC", "LA", "Chicago"],
            })
            
            client.store(table)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()
    
    def test_store_arrow_mixed_dtypes(self):
        """Test storing PyArrow Table with mixed dtypes"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            table = pa.Table.from_pydict({
                "strings": ["a", "b", "c"],
                "integers": pa.array([1, 2, 3], type=pa.int64()),
                "floats": pa.array([1.1, 2.2, 3.3], type=pa.float64()),
                "booleans": pa.array([True, False, True], type=pa.bool_()),
            })
            
            client.store(table)
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()
    
    def test_from_pyarrow_method(self):
        """Test from_pyarrow convenience method"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            table = pa.Table.from_pydict({
                "key": ["a", "b", "c"],
                "value": [1, 2, 3],
            })
            
            returned_client = client.from_pyarrow(table)
            
            # Should return self for chaining
            assert returned_client is client
            
            count = client.count_rows()
            assert count == 3
            
            results = client.retrieve_all()
            assert len(results) == 3
            
            client.close()


class TestStorageEdgeCases:
    """Test edge cases and error handling for storage operations"""
    
    def test_store_unsupported_format(self):
        """Test storing unsupported data format"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Try to store unsupported format
            with pytest.raises(ValueError, match="Data must be dict, list of dicts"):
                client.store("unsupported_string")
            
            with pytest.raises(ValueError, match="Data must be dict, list of dicts"):
                client.store(123)
            
            with pytest.raises(ValueError, match="Data must be dict, list of dicts"):
                client.store(set([1, 2, 3]))
            
            client.close()
    
    def test_store_on_closed_client(self):
        """Test storage operations on closed client"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            client.close()
            
            with pytest.raises(RuntimeError, match="connection has been closed"):
                client.store({"test": "data"})
            
            with pytest.raises(RuntimeError, match="connection has been closed"):
                client.store([{"test": "data"}])
            
            with pytest.raises(RuntimeError, match="connection has been closed"):
                client.store({"col": [1, 2, 3]})
    
    def test_store_very_large_values(self):
        """Test storing very large values"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Very long string
            long_string = "x" * 1000000  # 1MB string
            
            data = {
                "long_string": long_string,
                "normal": "test",
            }
            
            client.store(data)
            
            result = client.retrieve(1)
            assert len(result["long_string"]) == 1000000
            assert result["normal"] == "test"
            
            client.close()
    
    def test_store_nested_structures(self):
        """Test storing nested structures (should be handled gracefully)"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Nested dict - might be converted to string
            data = {
                "nested_dict": {"key": "value"},
                "nested_list": [1, 2, 3],
                "normal": "test",
            }
            
            try:
                client.store(data)
                result = client.retrieve(1)
                # Check how nested structures are handled
                assert "normal" in result
            except Exception as e:
                print(f"Nested structures handled as: {e}")
            
            client.close()
    
    def test_store_special_characters(self):
        """Test storing data with special characters"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            data = {
                "quotes": 'Single "double" quotes',
                "newlines": "Line 1\nLine 2\rLine 3",
                "tabs": "Tab\tseparated",
                "backslashes": "Backslash\\test",
                "unicode": "Unicode: ñáéíóú",
                "emoji": "Emoji: 🎉🚀🌟",
                "null_bytes": "Null\x00byte",
            }
            
            client.store(data)
            
            result = client.retrieve(1)
            for key, expected in data.items():
                assert result[key] == expected
            
            client.close()
    
    def test_store_with_fts_enabled(self):
        """Test storage with FTS enabled"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            client.init_fts(index_fields=["content", "title"])
            
            data = {
                "title": "Test Document",
                "content": "This is searchable content",
                "metadata": "not_indexed",
            }
            
            client.store(data)
            
            # Verify FTS indexing
            results = client.search_text("searchable")
            assert len(results) > 0
            
            client.close()
    
    def test_store_performance_considerations(self):
        """Test performance considerations for different storage formats"""
        with tempfile.TemporaryDirectory() as temp_dir:
            client = ApexClient(dirpath=temp_dir)
            client.create_table("default")
            
            # Test different storage formats with same data
            base_data = [{"id": i, "value": f"item_{i}"} for i in range(100)]
            
            # List of dicts
            client.store(base_data.copy())
            list_count = client.count_rows()
            
            # Clear and test columnar
            client.create_table("columnar_test")
            columnar_data = {
                "id": list(range(100)),
                "value": [f"item_{i}" for i in range(100)],
            }
            client.store(columnar_data)
            columnar_count = client.count_rows()
            
            # Both should store the same amount
            assert list_count == 100
            assert columnar_count == 100
            
            client.close()


if __name__ == "__main__":
    pytest.main([__file__, "-v"])