akar-function 0.1.18

Function registry and expression evaluation for the Akar embedded graph database
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
//! Function registry — manages lookup and registration of all built-in functions.
//!
//! Three categories:
//! - Scalar functions (1-to-1 mapping of inputs to outputs)
//! - Aggregate functions (N-to-1 reduction)
//! - Table functions (produce a table of rows)

use akar_common::types::Value;
use akar_common::vector::DataChunk;
use hashbrown::HashMap;
use std::sync::Arc;

// ==================== Scalar Function Types ====================

/// All built-in scalar function variants.
#[derive(Clone)]
#[allow(clippy::type_complexity)]
pub enum ScalarFunction {
    Arithmetic {
        op: ArithmeticOp,
    },
    Comparison {
        op: ComparisonOp,
    },
    String {
        op: StringOp,
    },
    Cast {
        target_type: CastTarget,
    },
    Date {
        op: DateOp,
    },
    List {
        op: ListOp,
    },
    Map {
        op: MapOp,
    },
    Struct {
        op: StructOp,
    },
    Boolean {
        op: BooleanOp,
    },
    Utility {
        op: UtilityOp,
    },
    Schema {
        op: SchemaOp,
    },
    Array {
        op: ArrayOp,
    },
    /// Path functions — operate on recursive rel / path values.
    Path {
        op: PathOp,
    },
    /// UUID function — generates random UUIDs.
    Uuid,
    /// Extension-provided scalar function with a callback closure.
    /// The closure receives input values and returns an output value.
    CustomScalar {
        name: String,
        execute: Arc<dyn Fn(&[Value]) -> Result<Value, String> + Send + Sync>,
    },
    /// Sequence operation (nextval/currval) — requires catalog access.
    /// Resolved at the connection/processor level where the catalog is available.
    SequenceOp {
        is_nextval: bool,
    },
    /// Hash functions — MD5, SHA256, generic HASH.
    Hash {
        op: HashOp,
    },
    /// Interval constructor functions.
    Interval {
        op: IntervalOp,
    },
    /// Blob functions — ENCODE, DECODE, OCTET_LENGTH.
    Blob {
        op: BlobOp,
    },
    /// Union functions — UNION_VALUE, UNION_TAG, UNION_EXTRACT.
    Union {
        op: UnionOp,
    },
}

impl std::fmt::Debug for ScalarFunction {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Arithmetic { op } => f.debug_struct("Arithmetic").field("op", op).finish(),
            Self::Comparison { op } => f.debug_struct("Comparison").field("op", op).finish(),
            Self::String { op } => f.debug_struct("String").field("op", op).finish(),
            Self::Cast { target_type } => f.debug_struct("Cast").field("target_type", target_type).finish(),
            Self::Date { op } => f.debug_struct("Date").field("op", op).finish(),
            Self::List { op } => f.debug_struct("List").field("op", op).finish(),
            Self::Map { op } => f.debug_struct("Map").field("op", op).finish(),
            Self::Struct { op } => f.debug_struct("Struct").field("op", op).finish(),
            Self::Boolean { op } => f.debug_struct("Boolean").field("op", op).finish(),
            Self::Utility { op } => f.debug_struct("Utility").field("op", op).finish(),
            Self::Schema { op } => f.debug_struct("Schema").field("op", op).finish(),
            Self::Array { op } => f.debug_struct("Array").field("op", op).finish(),
            Self::Path { op } => f.debug_struct("Path").field("op", op).finish(),
            Self::Uuid => f.debug_struct("Uuid").finish(),
            Self::CustomScalar { name, .. } => f.debug_struct("CustomScalar").field("name", name).finish(),
            Self::SequenceOp { is_nextval } => f.debug_struct("SequenceOp").field("is_nextval", is_nextval).finish(),
            Self::Hash { op } => f.debug_struct("Hash").field("op", op).finish(),
            Self::Interval { op } => f.debug_struct("Interval").field("op", op).finish(),
            Self::Blob { op } => f.debug_struct("Blob").field("op", op).finish(),
            Self::Union { op } => f.debug_struct("Union").field("op", op).finish(),
        }
    }
}

#[derive(Debug, Clone, Copy)]
pub enum ArithmeticOp {
    Add,
    Sub,
    Mul,
    Div,
    Mod,
    Abs,
    Ceil,
    Floor,
    Round,
    Negate,
    Power,
    Sqrt,
    Log,
    Exp,
    Sin,
    Cos,
    Tan,
    Asin,
    Acos,
    Atan,
    Atan2,
    Sinh,
    Cosh,
    Tanh,
    Degrees,
    Radians,
    Sign,
    Pi,
    Rand,
    /// Math functions (f64-based, single argument)
    Cbrt,
    Cot,
    Log2,
    Even,
    Gcd,
    Lcm,
    /// Heavy math functions (C++ port)
    Factorial,
    Gamma,
    Lgamma,
    /// Seeding the RNG
    SetSeed,
    /// Bitwise operations (int64-only, matching C++ hardcoded int64_t)
    BitwiseAnd,
    BitwiseOr,
    BitwiseXor,
    BitShiftLeft,
    BitShiftRight,
}

#[derive(Debug, Clone, Copy)]
pub enum ComparisonOp {
    Eq,
    NotEq,
    Lt,
    Lte,
    Gt,
    Gte,
    IsNull,
    IsNotNull,
}

#[derive(Debug, Clone, Copy)]
pub enum StringOp {
    Concat,
    Contains,
    StartsWith,
    EndsWith,
    ToUpper,
    ToLower,
    Trim,
    LTrim,
    RTrim,
    Length,
    Reverse,
    Repeat,
    Replace,
    Substring,
    RegexMatches,
    RegexReplace,
    Split,
    Head,
    Tail,
    Left,
    Right,
    Lpad,
    Rpad,
    /// String basic functions (C++ port)
    InitCap,
    Soundex,
    ConcatWs,
    SplitPart,
    ArrayExtract,
    /// Regex string functions (C++ port)
    RegexpFullMatch,
    RegexpExtract,
    RegexpExtractAll,
    RegexpSplitToArray,
    /// String edit distance
    Levenshtein,
    /// LIKE pattern matching
    Like,
}

#[derive(Debug, Clone, Copy)]
pub enum CastTarget {
    String,
    Int64,
    Int32,
    Double,
    Float,
    Bool,
    Date,
    Timestamp,
    Interval,
}

#[derive(Debug, Clone, Copy)]
pub enum DateOp {
    DatePart,
    DateTrunc,
    DateDiff,
    DateAdd,
    CurrentDate,
    CurrentTimestamp,
    Year,
    Month,
    Day,
    Hour,
    Minute,
    Second,
    DayName,
    MonthName,
    LastDay,
    MakeDate,
    /// Timestamp functions (C++ port)
    Century,
    EpochMs,
    ToTimestamp,
    ToEpochMs,
}

#[derive(Debug, Clone, Copy)]
pub enum ListOp {
    Creation,
    Extract,
    Concat,
    Len,
    Sort,
    Reverse,
    Contains,
    Append,
    Prepend,
    Slice,
    /// List functions (C++ port)
    Range,
    Distinct,
    Unique,
    Sum,
    Product,
    AnyValue,
    ToString,
    Position,
    HasAll,
    ReverseSort,
    /// List predicate functions (non-lambda versions)
    Any,
    All,
    None,
    Single,
    Count,
    Min,
    Max,
    HasAny,
    /// Lambda-based list functions (evaluated by expression evaluator)
    Transform,
    Filter,
    Reduce,
}

#[derive(Debug, Clone, Copy)]
pub enum MapOp {
    Creation,
    Extract,
    MapFromEntries,
    Keys,
    Values,
    Contains,
}

#[derive(Debug, Clone, Copy)]
pub enum StructOp {
    Creation,
    Extract,
}

#[derive(Debug, Clone, Copy)]
pub enum BooleanOp {
    And,
    Or,
    Xor,
    Not,
}

/// Utility functions.
#[derive(Debug, Clone, Copy)]
pub enum UtilityOp {
    Coalesce,
    IfNull,
    TypeOf,
    NullIf,
    Size,
    Error,
    PgIsReady,
    /// Return the largest value among arguments (SQL standard, NULLs ignored).
    Greatest,
    /// Return the smallest value among arguments (SQL standard, NULLs ignored).
    Least,
    /// ConstantOrNull(a, b) — returns a if both a and b are non-NULL, else NULL.
    /// Utility function for NULL-aware constant propagation.
    ConstantOrNull,
}

/// Schema functions — access metadata about nodes, relationships, and values.
///
/// These correspond to the C++ schema functions in `function/schema/`:
/// - `OFFSET(v)` → returns the internal offset of a node/rel ID (INT64)
/// - `ID(v)` → returns the internal ID (offset + table_id) as InternalID
/// - `START_NODE(r)` → returns the source node of a relationship
/// - `END_NODE(r)` → returns the target node of a relationship
/// - `LABEL(v)` → returns the table name as a string
#[derive(Debug, Clone, Copy)]
pub enum SchemaOp {
    Offset,
    Id,
    StartNode,
    EndNode,
    Label,
    /// COST(pattern) — extract total cost from a weighted path.
    Cost,
    /// ROWID(pattern) — extract row offset from InternalID.
    RowId,
}

/// Path functions — operate on recursive rel / path values (NODES, RELS, LENGTH).
///
/// Ported from C++ `function/path/`:
/// - `NODES(path)` → returns the list of nodes in the path
/// - `RELS(path)` / `RELATIONSHIPS(path)` → returns the list of rels in the path
/// - `LENGTH(path)` → returns the number of rels in the path
#[derive(Debug, Clone, Copy)]
pub enum PathOp {
    Nodes,
    Rels,
    Length,
    /// PROPERTIES(path) — extract all properties from path nodes and rels.
    Properties,
    /// IS_TRAIL(path) — check if path has no repeated edges (a trail).
    IsTrail,
    /// IS_ACYCLIC(path) — check if path has no repeated nodes (acyclic).
    IsAcyclic,
}

/// Array math functions — element-wise operations on numeric lists.
///
/// These correspond to the C++ array functions in `function/array/`:
/// - `array_cosine_similarity(a, b)` → cosine similarity between two arrays
/// - `array_distance(a, b)` → Euclidean distance between two arrays
/// - `array_inner_product(a, b)` → dot/inner product of two arrays
/// - `array_cross_product(a, b)` → 3D cross product of two arrays
/// - `array_squared_distance(a, b)` → squared Euclidean distance
#[derive(Debug, Clone, Copy)]
pub enum ArrayOp {
    CosineSimilarity,
    Distance,
    InnerProduct,
    DotProduct,
    CrossProduct,
    SquaredDistance,
    Intersect,
}

/// Hash functions — ported from C++ `function/hash/`.
///
/// - `MD5(str)` → 32-char hex string
/// - `SHA256(str)` → 64-char hex string
/// - `HASH(val)` → Int64 hash of any value
#[derive(Debug, Clone, Copy)]
pub enum HashOp {
    Md5,
    Sha256,
    Hash,
}

/// Interval constructor functions — ported from C++ `function/interval/`.
///
/// Each takes INT64 and returns INTERVAL:
/// - `TO_YEARS(n)` → months = n * 12
/// - `TO_MONTHS(n)` → months = n
/// - `TO_DAYS(n)` → days = n
/// - `TO_HOURS(n)` → micros = n * 3_600_000_000
/// - `TO_MINUTES(n)` → micros = n * 60_000_000
/// - `TO_SECONDS(n)` → micros = n * 1_000_000
/// - `TO_MILLISECONDS(n)` → micros = n * 1000
/// - `TO_MICROSECONDS(n)` → micros = n
#[derive(Debug, Clone, Copy)]
pub enum IntervalOp {
    ToYears,
    ToMonths,
    ToDays,
    ToHours,
    ToMinutes,
    ToSeconds,
    ToMilliseconds,
    ToMicroseconds,
}

/// Blob functions — ported from C++ `function/blob/`.
///
/// - `ENCODE(str)` → Blob: copy string bytes into a blob
/// - `DECODE(blob)` → String: convert blob to string (UTF-8 validated)
/// - `OCTET_LENGTH(blob)` → Int64: byte length of blob
#[derive(Debug, Clone, Copy)]
pub enum BlobOp {
    Encode,
    Decode,
    OctetLength,
    ToBase64,
    FromBase64,
    BlobFromBytes,
}

/// Union functions — ported from C++ `function/union/`.
///
/// Union is stored internally as Struct with a `"tag"` field (UInt16) prepended.
/// - `UNION_VALUE(val)` → create a union wrapping a value
/// - `UNION_TAG(u)` → return active tag name as string
/// - `UNION_EXTRACT(u, key)` → extract value by field name
#[derive(Debug, Clone, Copy)]
pub enum UnionOp {
    UnionValue,
    UnionTag,
    UnionExtract,
}

// ==================== Aggregate Function Types ====================

/// All built-in aggregate functions.
#[derive(Debug, Clone)]
pub enum AggregateFunction {
    Count,
    Sum,
    Avg,
    Min,
    Max,
    Collect,
    CountStar,
    StdDev,
    Variance,
    /// STRING_AGG(expr, delimiter) — concatenates strings.
    StringAgg {
        delimiter: String,
    },
    /// PERCENTILE_DISC(expr, percentile) — discrete percentile.
    PercentileDisc {
        percentile: f64,
    },
    /// PERCENTILE_CONT(expr, percentile) — continuous percentile.
    PercentileCont {
        percentile: f64,
    },
    /// COUNT_IF(condition) — count rows where condition is TRUE.
    CountIf,
}

// ==================== Table Function Types ====================

/// All built-in table functions.
#[derive(Clone)]
pub enum TableFunction {
    ScanCsv {
        path: String,
    },
    ScanParquet {
        path: String,
    },
    ScanJson {
        path: String,
    },
    ListTables,
    ShowColumns {
        table_name: String,
    },
    CurrentSetting {
        key: String,
    },
    /// Extension-specific custom table function (tag-based, no callback).
    /// The `name` field identifies which custom function to execute.
    Custom {
        name: String,
    },
    /// Extension-provided table function with a callback closure.
    /// The closure receives input args and fills a mutable DataChunk.
    #[allow(clippy::type_complexity)]
    CustomTable {
        name: String,
        execute: Arc<dyn Fn(&[Value], &mut DataChunk) -> Result<(), String> + Send + Sync>,
    },
    /// Extension-provided table function with graph access.
    /// The closure receives input args, an optional graph data source
    /// (present when the caller owns a storage catalog), and fills a
    /// mutable DataChunk.
    #[allow(clippy::type_complexity)]
    CustomTableWithGraph {
        name: String,
        execute: Arc<
            dyn Fn(&[Value], Option<&dyn crate::graph::GraphDataSource>, &mut DataChunk) -> Result<(), String>
                + Send
                + Sync,
        >,
    },
}

impl std::fmt::Debug for TableFunction {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::ScanCsv { path } => f.debug_struct("ScanCsv").field("path", path).finish(),
            Self::ScanParquet { path } => f.debug_struct("ScanParquet").field("path", path).finish(),
            Self::ScanJson { path } => f.debug_struct("ScanJson").field("path", path).finish(),
            Self::ListTables => write!(f, "ListTables"),
            Self::ShowColumns { table_name } => f.debug_struct("ShowColumns").field("table_name", table_name).finish(),
            Self::CurrentSetting { key } => f.debug_struct("CurrentSetting").field("key", key).finish(),
            Self::Custom { name } => f.debug_struct("Custom").field("name", name).finish(),
            Self::CustomTable { name, .. } => f.debug_struct("CustomTable").field("name", name).finish(),
            Self::CustomTableWithGraph { name, .. } => {
                f.debug_struct("CustomTableWithGraph").field("name", name).finish()
            }
        }
    }
}

/// A resolved function with its variant.
#[derive(Debug, Clone)]
pub enum ResolvedFunction {
    Scalar(ScalarFunction),
    Aggregate(AggregateFunction),
    Table(TableFunction),
}

// ==================== Registry ====================

/// Registry of all built-in functions (scalar, aggregate, table).
#[derive(Default)]
pub struct FunctionRegistry {
    scalar_functions: HashMap<String, ScalarFunction>,
    aggregate_functions: HashMap<String, AggregateFunction>,
    table_functions: HashMap<String, TableFunction>,
}

impl FunctionRegistry {
    pub fn new() -> Self {
        let mut reg = Self::default();
        reg.register_builtins();
        reg
    }

    fn register_builtins(&mut self) {
        // --- Arithmetic ---
        self.register_scalar("+", ScalarFunction::Arithmetic { op: ArithmeticOp::Add });
        self.register_scalar("-", ScalarFunction::Arithmetic { op: ArithmeticOp::Sub });
        self.register_scalar("*", ScalarFunction::Arithmetic { op: ArithmeticOp::Mul });
        self.register_scalar("/", ScalarFunction::Arithmetic { op: ArithmeticOp::Div });
        self.register_scalar("%", ScalarFunction::Arithmetic { op: ArithmeticOp::Mod });
        self.register_scalar("abs", ScalarFunction::Arithmetic { op: ArithmeticOp::Abs });
        self.register_scalar("ceil", ScalarFunction::Arithmetic { op: ArithmeticOp::Ceil });
        // Standard SQL alias
        self.register_scalar("ceiling", ScalarFunction::Arithmetic { op: ArithmeticOp::Ceil });
        self.register_scalar(
            "floor",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Floor,
            },
        );
        self.register_scalar(
            "round",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Round,
            },
        );
        self.register_scalar(
            "^",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Power,
            },
        );
        self.register_scalar("sqrt", ScalarFunction::Arithmetic { op: ArithmeticOp::Sqrt });
        // Standard SQL aliases
        self.register_scalar(
            "pow",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Power,
            },
        );
        self.register_scalar("log10", ScalarFunction::Arithmetic { op: ArithmeticOp::Log });
        // Math aliases
        self.register_scalar("cbrt", ScalarFunction::Arithmetic { op: ArithmeticOp::Cbrt });
        self.register_scalar("cot", ScalarFunction::Arithmetic { op: ArithmeticOp::Cot });
        self.register_scalar("log", ScalarFunction::Arithmetic { op: ArithmeticOp::Log });
        self.register_scalar("ln", ScalarFunction::Arithmetic { op: ArithmeticOp::Log });
        self.register_scalar("log2", ScalarFunction::Arithmetic { op: ArithmeticOp::Log2 });
        self.register_scalar("even", ScalarFunction::Arithmetic { op: ArithmeticOp::Even });
        self.register_scalar(
            "factorial",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Factorial,
            },
        );
        self.register_scalar(
            "gamma",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Gamma,
            },
        );
        self.register_scalar(
            "lgamma",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Lgamma,
            },
        );
        self.register_scalar(
            "set_seed",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::SetSeed,
            },
        );
        self.register_scalar("exp", ScalarFunction::Arithmetic { op: ArithmeticOp::Exp });
        self.register_scalar("sin", ScalarFunction::Arithmetic { op: ArithmeticOp::Sin });
        self.register_scalar("cos", ScalarFunction::Arithmetic { op: ArithmeticOp::Cos });
        self.register_scalar("tan", ScalarFunction::Arithmetic { op: ArithmeticOp::Tan });
        self.register_scalar("asin", ScalarFunction::Arithmetic { op: ArithmeticOp::Asin });
        self.register_scalar("acos", ScalarFunction::Arithmetic { op: ArithmeticOp::Acos });
        self.register_scalar("atan", ScalarFunction::Arithmetic { op: ArithmeticOp::Atan });
        self.register_scalar(
            "atan2",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Atan2,
            },
        );
        self.register_scalar(
            "degrees",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Degrees,
            },
        );
        self.register_scalar(
            "radians",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::Radians,
            },
        );
        self.register_scalar("sign", ScalarFunction::Arithmetic { op: ArithmeticOp::Sign });
        self.register_scalar("pi", ScalarFunction::Arithmetic { op: ArithmeticOp::Pi });
        self.register_scalar("rand", ScalarFunction::Arithmetic { op: ArithmeticOp::Rand });

        self.register_scalar("sinh", ScalarFunction::Arithmetic { op: ArithmeticOp::Sinh });
        self.register_scalar("cosh", ScalarFunction::Arithmetic { op: ArithmeticOp::Cosh });
        self.register_scalar("tanh", ScalarFunction::Arithmetic { op: ArithmeticOp::Tanh });
        self.register_scalar("gcd", ScalarFunction::Arithmetic { op: ArithmeticOp::Gcd });
        self.register_scalar("lcm", ScalarFunction::Arithmetic { op: ArithmeticOp::Lcm });

        // --- Bitwise ---
        self.register_scalar(
            "bitwise_and",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitwiseAnd,
            },
        );
        self.register_scalar(
            "&",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitwiseAnd,
            },
        );
        self.register_scalar(
            "bitwise_or",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitwiseOr,
            },
        );
        self.register_scalar(
            "|",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitwiseOr,
            },
        );
        self.register_scalar(
            "bitwise_xor",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitwiseXor,
            },
        );
        self.register_scalar(
            "#",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitwiseXor,
            },
        );
        self.register_scalar(
            "bit_shift_left",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitShiftLeft,
            },
        );
        self.register_scalar(
            "<<",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitShiftLeft,
            },
        );
        self.register_scalar(
            "bit_shift_right",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitShiftRight,
            },
        );
        self.register_scalar(
            ">>",
            ScalarFunction::Arithmetic {
                op: ArithmeticOp::BitShiftRight,
            },
        );

        // --- Comparison ---
        self.register_scalar("=", ScalarFunction::Comparison { op: ComparisonOp::Eq });
        self.register_scalar(
            "<>",
            ScalarFunction::Comparison {
                op: ComparisonOp::NotEq,
            },
        );
        self.register_scalar("<", ScalarFunction::Comparison { op: ComparisonOp::Lt });
        self.register_scalar("<=", ScalarFunction::Comparison { op: ComparisonOp::Lte });
        self.register_scalar(">", ScalarFunction::Comparison { op: ComparisonOp::Gt });
        self.register_scalar(">=", ScalarFunction::Comparison { op: ComparisonOp::Gte });
        self.register_scalar(
            "IS NULL",
            ScalarFunction::Comparison {
                op: ComparisonOp::IsNull,
            },
        );
        self.register_scalar(
            "IS NOT NULL",
            ScalarFunction::Comparison {
                op: ComparisonOp::IsNotNull,
            },
        );

        // --- String ---
        self.register_scalar("concat", ScalarFunction::String { op: StringOp::Concat });
        self.register_scalar("contains", ScalarFunction::String { op: StringOp::Contains });
        self.register_scalar(
            "starts_with",
            ScalarFunction::String {
                op: StringOp::StartsWith,
            },
        );
        self.register_scalar("ends_with", ScalarFunction::String { op: StringOp::EndsWith });
        // C++ function aliases
        self.register_scalar(
            "prefix",
            ScalarFunction::String {
                op: StringOp::StartsWith,
            },
        );
        self.register_scalar("suffix", ScalarFunction::String { op: StringOp::EndsWith });
        self.register_scalar("like", ScalarFunction::String { op: StringOp::Like });
        self.register_scalar("to_upper", ScalarFunction::String { op: StringOp::ToUpper });
        self.register_scalar("to_lower", ScalarFunction::String { op: StringOp::ToLower });
        // Standard SQL aliases
        self.register_scalar("upper", ScalarFunction::String { op: StringOp::ToUpper });
        self.register_scalar("lower", ScalarFunction::String { op: StringOp::ToLower });
        self.register_scalar("ucase", ScalarFunction::String { op: StringOp::ToUpper });
        self.register_scalar("lcase", ScalarFunction::String { op: StringOp::ToLower });
        self.register_scalar("trim", ScalarFunction::String { op: StringOp::Trim });
        self.register_scalar("ltrim", ScalarFunction::String { op: StringOp::LTrim });
        self.register_scalar("rtrim", ScalarFunction::String { op: StringOp::RTrim });
        self.register_scalar("length", ScalarFunction::String { op: StringOp::Length });
        self.register_scalar("reverse", ScalarFunction::String { op: StringOp::Reverse });
        self.register_scalar("repeat", ScalarFunction::String { op: StringOp::Repeat });
        self.register_scalar("replace", ScalarFunction::String { op: StringOp::Replace });
        self.register_scalar(
            "substring",
            ScalarFunction::String {
                op: StringOp::Substring,
            },
        );
        self.register_scalar(
            "regex_matches",
            ScalarFunction::String {
                op: StringOp::RegexMatches,
            },
        );
        self.register_scalar(
            "regex_replace",
            ScalarFunction::String {
                op: StringOp::RegexReplace,
            },
        );
        self.register_scalar("split", ScalarFunction::String { op: StringOp::Split });
        self.register_scalar("head", ScalarFunction::String { op: StringOp::Head });
        self.register_scalar("tail", ScalarFunction::String { op: StringOp::Tail });
        self.register_scalar("left", ScalarFunction::String { op: StringOp::Left });
        self.register_scalar("right", ScalarFunction::String { op: StringOp::Right });
        self.register_scalar("lpad", ScalarFunction::String { op: StringOp::Lpad });
        self.register_scalar("rpad", ScalarFunction::String { op: StringOp::Rpad });

        // --- String basic (C++ port) ---
        self.register_scalar("initcap", ScalarFunction::String { op: StringOp::InitCap });
        self.register_scalar("concat_ws", ScalarFunction::String { op: StringOp::ConcatWs });
        self.register_scalar(
            "split_part",
            ScalarFunction::String {
                op: StringOp::SplitPart,
            },
        );
        self.register_scalar(
            "array_extract",
            ScalarFunction::String {
                op: StringOp::ArrayExtract,
            },
        );

        // --- Regex string functions ---
        self.register_scalar(
            "regexp_full_match",
            ScalarFunction::String {
                op: StringOp::RegexpFullMatch,
            },
        );
        self.register_scalar(
            "regexp_extract",
            ScalarFunction::String {
                op: StringOp::RegexpExtract,
            },
        );
        self.register_scalar(
            "regexp_extract_all",
            ScalarFunction::String {
                op: StringOp::RegexpExtractAll,
            },
        );
        self.register_scalar(
            "regexp_split_to_array",
            ScalarFunction::String {
                op: StringOp::RegexpSplitToArray,
            },
        );
        self.register_scalar(
            "levenshtein",
            ScalarFunction::String {
                op: StringOp::Levenshtein,
            },
        );
        self.register_scalar("soundex", ScalarFunction::String { op: StringOp::Soundex });

        // --- Hash functions ---
        self.register_scalar("md5", ScalarFunction::Hash { op: HashOp::Md5 });
        self.register_scalar("sha256", ScalarFunction::Hash { op: HashOp::Sha256 });
        self.register_scalar("hash", ScalarFunction::Hash { op: HashOp::Hash });

        // --- Interval ---
        self.register_scalar(
            "to_years",
            ScalarFunction::Interval {
                op: IntervalOp::ToYears,
            },
        );
        self.register_scalar(
            "to_months",
            ScalarFunction::Interval {
                op: IntervalOp::ToMonths,
            },
        );
        self.register_scalar("to_days", ScalarFunction::Interval { op: IntervalOp::ToDays });
        self.register_scalar(
            "to_hours",
            ScalarFunction::Interval {
                op: IntervalOp::ToHours,
            },
        );
        self.register_scalar(
            "to_minutes",
            ScalarFunction::Interval {
                op: IntervalOp::ToMinutes,
            },
        );
        self.register_scalar(
            "to_seconds",
            ScalarFunction::Interval {
                op: IntervalOp::ToSeconds,
            },
        );
        self.register_scalar(
            "to_milliseconds",
            ScalarFunction::Interval {
                op: IntervalOp::ToMilliseconds,
            },
        );
        self.register_scalar(
            "to_microseconds",
            ScalarFunction::Interval {
                op: IntervalOp::ToMicroseconds,
            },
        );

        // --- Date/Time ---
        self.register_scalar("date_part", ScalarFunction::Date { op: DateOp::DatePart });
        self.register_scalar("date_trunc", ScalarFunction::Date { op: DateOp::DateTrunc });
        self.register_scalar("date_diff", ScalarFunction::Date { op: DateOp::DateDiff });
        self.register_scalar("date_add", ScalarFunction::Date { op: DateOp::DateAdd });
        self.register_scalar(
            "current_date",
            ScalarFunction::Date {
                op: DateOp::CurrentDate,
            },
        );
        self.register_scalar(
            "current_timestamp",
            ScalarFunction::Date {
                op: DateOp::CurrentTimestamp,
            },
        );
        self.register_scalar("year", ScalarFunction::Date { op: DateOp::Year });
        self.register_scalar("month", ScalarFunction::Date { op: DateOp::Month });

        // Sequence functions (require catalog access at connection level)
        self.register_scalar("nextval", ScalarFunction::SequenceOp { is_nextval: true });
        self.register_scalar("currval", ScalarFunction::SequenceOp { is_nextval: false });
        self.register_scalar("day", ScalarFunction::Date { op: DateOp::Day });
        self.register_scalar("hour", ScalarFunction::Date { op: DateOp::Hour });
        self.register_scalar("minute", ScalarFunction::Date { op: DateOp::Minute });
        self.register_scalar("second", ScalarFunction::Date { op: DateOp::Second });
        self.register_scalar("dayname", ScalarFunction::Date { op: DateOp::DayName });
        self.register_scalar("monthname", ScalarFunction::Date { op: DateOp::MonthName });
        self.register_scalar("last_day", ScalarFunction::Date { op: DateOp::LastDay });
        self.register_scalar("make_date", ScalarFunction::Date { op: DateOp::MakeDate });
        self.register_scalar("century", ScalarFunction::Date { op: DateOp::Century });
        self.register_scalar("epoch_ms", ScalarFunction::Date { op: DateOp::EpochMs });
        self.register_scalar(
            "to_timestamp",
            ScalarFunction::Date {
                op: DateOp::ToTimestamp,
            },
        );
        self.register_scalar("to_epoch_ms", ScalarFunction::Date { op: DateOp::ToEpochMs });

        // --- Cast ---
        self.register_scalar(
            "CAST",
            ScalarFunction::Cast {
                target_type: CastTarget::String,
            },
        );
        self.register_scalar(
            "cast_string",
            ScalarFunction::Cast {
                target_type: CastTarget::String,
            },
        );
        self.register_scalar(
            "cast_int64",
            ScalarFunction::Cast {
                target_type: CastTarget::Int64,
            },
        );
        self.register_scalar(
            "cast_double",
            ScalarFunction::Cast {
                target_type: CastTarget::Double,
            },
        );
        self.register_scalar(
            "cast_bool",
            ScalarFunction::Cast {
                target_type: CastTarget::Bool,
            },
        );
        // Cast function name aliases (Cypher/SQL standard)
        self.register_scalar(
            "date",
            ScalarFunction::Cast {
                target_type: CastTarget::Date,
            },
        );
        self.register_scalar(
            "timestamp",
            ScalarFunction::Cast {
                target_type: CastTarget::Timestamp,
            },
        );
        self.register_scalar(
            "float",
            ScalarFunction::Cast {
                target_type: CastTarget::Double,
            },
        );
        self.register_scalar(
            "double",
            ScalarFunction::Cast {
                target_type: CastTarget::Double,
            },
        );
        self.register_scalar(
            "int64",
            ScalarFunction::Cast {
                target_type: CastTarget::Int64,
            },
        );
        self.register_scalar(
            "int",
            ScalarFunction::Cast {
                target_type: CastTarget::Int64,
            },
        );
        self.register_scalar(
            "bool",
            ScalarFunction::Cast {
                target_type: CastTarget::Bool,
            },
        );
        self.register_scalar(
            "boolean",
            ScalarFunction::Cast {
                target_type: CastTarget::Bool,
            },
        );
        self.register_scalar(
            "string",
            ScalarFunction::Cast {
                target_type: CastTarget::String,
            },
        );
        self.register_scalar(
            "blob",
            ScalarFunction::Cast {
                target_type: CastTarget::String,
            },
        );

        // --- Blob ---
        self.register_scalar("encode", ScalarFunction::Blob { op: BlobOp::Encode });
        self.register_scalar("decode", ScalarFunction::Blob { op: BlobOp::Decode });
        self.register_scalar(
            "octet_length",
            ScalarFunction::Blob {
                op: BlobOp::OctetLength,
            },
        );

        // --- List ---
        self.register_scalar("list_creation", ScalarFunction::List { op: ListOp::Creation });
        self.register_scalar("list_extract", ScalarFunction::List { op: ListOp::Extract });
        self.register_scalar("list_concat", ScalarFunction::List { op: ListOp::Concat });
        self.register_scalar("list_cat", ScalarFunction::List { op: ListOp::Concat });
        self.register_scalar("list_len", ScalarFunction::List { op: ListOp::Len });
        self.register_scalar("list_sort", ScalarFunction::List { op: ListOp::Sort });
        self.register_scalar("list_reverse", ScalarFunction::List { op: ListOp::Reverse });
        self.register_scalar("list_contains", ScalarFunction::List { op: ListOp::Contains });
        self.register_scalar("list_append", ScalarFunction::List { op: ListOp::Append });
        self.register_scalar("list_prepend", ScalarFunction::List { op: ListOp::Prepend });
        self.register_scalar("list_slice", ScalarFunction::List { op: ListOp::Slice });

        // --- List functions (C++ port) ---
        self.register_scalar("range", ScalarFunction::List { op: ListOp::Range });
        self.register_scalar("list_distinct", ScalarFunction::List { op: ListOp::Distinct });
        self.register_scalar("list_unique", ScalarFunction::List { op: ListOp::Unique });
        self.register_scalar("list_sum", ScalarFunction::List { op: ListOp::Sum });
        self.register_scalar("list_product", ScalarFunction::List { op: ListOp::Product });
        self.register_scalar("list_any_value", ScalarFunction::List { op: ListOp::AnyValue });
        self.register_scalar("list_to_string", ScalarFunction::List { op: ListOp::ToString });
        self.register_scalar("list_position", ScalarFunction::List { op: ListOp::Position });
        self.register_scalar("list_indexof", ScalarFunction::List { op: ListOp::Position });
        self.register_scalar("list_has_all", ScalarFunction::List { op: ListOp::HasAll });
        self.register_scalar("list_has_any", ScalarFunction::List { op: ListOp::HasAny });
        self.register_scalar("list_count", ScalarFunction::List { op: ListOp::Count });
        self.register_scalar("list_min", ScalarFunction::List { op: ListOp::Min });
        self.register_scalar("list_max", ScalarFunction::List { op: ListOp::Max });
        self.register_scalar(
            "list_reverse_sort",
            ScalarFunction::List {
                op: ListOp::ReverseSort,
            },
        );

        // --- Lambda-based list functions (evaluated by expression evaluator) ---
        self.register_scalar("list_transform", ScalarFunction::List { op: ListOp::Transform });
        self.register_scalar("list_filter", ScalarFunction::List { op: ListOp::Filter });
        self.register_scalar("list_reduce", ScalarFunction::List { op: ListOp::Reduce });

        // --- List predicate functions ---
        self.register_scalar("any", ScalarFunction::List { op: ListOp::Any });
        self.register_scalar("all", ScalarFunction::List { op: ListOp::All });
        self.register_scalar("none", ScalarFunction::List { op: ListOp::None });
        self.register_scalar("single", ScalarFunction::List { op: ListOp::Single });

        // --- Map ---
        self.register_scalar("map_creation", ScalarFunction::Map { op: MapOp::Creation });
        self.register_scalar("map_extract", ScalarFunction::Map { op: MapOp::Extract });
        self.register_scalar("element_at", ScalarFunction::Map { op: MapOp::Extract });
        self.register_scalar("map_keys", ScalarFunction::Map { op: MapOp::Keys });
        self.register_scalar("map_values", ScalarFunction::Map { op: MapOp::Values });

        // --- Struct ---
        self.register_scalar("struct_creation", ScalarFunction::Struct { op: StructOp::Creation });
        self.register_scalar("struct_extract", ScalarFunction::Struct { op: StructOp::Extract });

        // --- Union ---
        self.register_scalar(
            "union_value",
            ScalarFunction::Union {
                op: UnionOp::UnionValue,
            },
        );
        self.register_scalar(
            "union_extract",
            ScalarFunction::Union {
                op: UnionOp::UnionExtract,
            },
        );
        self.register_scalar("union_tag", ScalarFunction::Union { op: UnionOp::UnionTag });

        // --- Boolean ---
        self.register_scalar("AND", ScalarFunction::Boolean { op: BooleanOp::And });
        self.register_scalar("OR", ScalarFunction::Boolean { op: BooleanOp::Or });
        self.register_scalar("XOR", ScalarFunction::Boolean { op: BooleanOp::Xor });
        self.register_scalar("NOT", ScalarFunction::Boolean { op: BooleanOp::Not });

        // --- Utility ---
        self.register_scalar(
            "coalesce",
            ScalarFunction::Utility {
                op: UtilityOp::Coalesce,
            },
        );
        self.register_scalar("ifnull", ScalarFunction::Utility { op: UtilityOp::IfNull });
        self.register_scalar("nullif", ScalarFunction::Utility { op: UtilityOp::NullIf });
        self.register_scalar("size", ScalarFunction::Utility { op: UtilityOp::Size });
        self.register_scalar("cardinality", ScalarFunction::Utility { op: UtilityOp::Size });
        self.register_scalar("typeof", ScalarFunction::Utility { op: UtilityOp::TypeOf });
        self.register_scalar("error", ScalarFunction::Utility { op: UtilityOp::Error });
        self.register_scalar(
            "pg_isready",
            ScalarFunction::Utility {
                op: UtilityOp::PgIsReady,
            },
        );

        // --- Greatest/Least (SQL extremum functions) ---
        self.register_scalar(
            "greatest",
            ScalarFunction::Utility {
                op: UtilityOp::Greatest,
            },
        );
        self.register_scalar("least", ScalarFunction::Utility { op: UtilityOp::Least });
        self.register_scalar(
            "constant_or_null",
            ScalarFunction::Utility {
                op: UtilityOp::ConstantOrNull,
            },
        );

        // --- Schema ---
        self.register_scalar("OFFSET", ScalarFunction::Schema { op: SchemaOp::Offset });
        self.register_scalar("ID", ScalarFunction::Schema { op: SchemaOp::Id });
        self.register_scalar(
            "START_NODE",
            ScalarFunction::Schema {
                op: SchemaOp::StartNode,
            },
        );
        self.register_scalar("END_NODE", ScalarFunction::Schema { op: SchemaOp::EndNode });
        self.register_scalar("LABEL", ScalarFunction::Schema { op: SchemaOp::Label });
        self.register_scalar("COST", ScalarFunction::Schema { op: SchemaOp::Cost });
        self.register_scalar("ROWID", ScalarFunction::Schema { op: SchemaOp::RowId });

        // --- Array ---
        self.register_scalar(
            "array_cosine_similarity",
            ScalarFunction::Array {
                op: ArrayOp::CosineSimilarity,
            },
        );
        self.register_scalar("array_distance", ScalarFunction::Array { op: ArrayOp::Distance });
        self.register_scalar(
            "array_inner_product",
            ScalarFunction::Array {
                op: ArrayOp::InnerProduct,
            },
        );
        self.register_scalar(
            "array_dot_product",
            ScalarFunction::Array {
                op: ArrayOp::DotProduct,
            },
        );
        self.register_scalar(
            "array_cross_product",
            ScalarFunction::Array {
                op: ArrayOp::CrossProduct,
            },
        );
        self.register_scalar(
            "array_squared_distance",
            ScalarFunction::Array {
                op: ArrayOp::SquaredDistance,
            },
        );
        self.register_scalar("array_intersect", ScalarFunction::Array { op: ArrayOp::Intersect });

        // --- Path ---
        self.register_scalar("nodes", ScalarFunction::Path { op: PathOp::Nodes });
        self.register_scalar("rels", ScalarFunction::Path { op: PathOp::Rels });
        self.register_scalar("relationships", ScalarFunction::Path { op: PathOp::Rels });
        self.register_scalar("properties", ScalarFunction::Path { op: PathOp::Properties });
        self.register_scalar("is_trail", ScalarFunction::Path { op: PathOp::IsTrail });
        self.register_scalar("is_acyclic", ScalarFunction::Path { op: PathOp::IsAcyclic });

        // --- UUID ---
        self.register_scalar("gen_random_uuid", ScalarFunction::Uuid);

        // --- Map ---
        self.register_scalar(
            "map_from_entries",
            ScalarFunction::Map {
                op: MapOp::MapFromEntries,
            },
        );

        // --- Blob ---
        self.register_scalar(
            "blob_from_bytes",
            ScalarFunction::Blob {
                op: BlobOp::BlobFromBytes,
            },
        );
        self.register_scalar("to_base64", ScalarFunction::Blob { op: BlobOp::ToBase64 });
        self.register_scalar("from_base64", ScalarFunction::Blob { op: BlobOp::FromBase64 });

        // --- Array utility aliases (delegate to list functions) ---
        self.register_scalar("array_concat", ScalarFunction::List { op: ListOp::Concat });
        self.register_scalar("array_cat", ScalarFunction::List { op: ListOp::Concat });
        self.register_scalar("array_append", ScalarFunction::List { op: ListOp::Append });
        self.register_scalar("array_push_back", ScalarFunction::List { op: ListOp::Append });
        self.register_scalar("array_prepend", ScalarFunction::List { op: ListOp::Prepend });
        self.register_scalar("array_push_front", ScalarFunction::List { op: ListOp::Prepend });
        self.register_scalar("array_contains", ScalarFunction::List { op: ListOp::Contains });
        self.register_scalar("array_has", ScalarFunction::List { op: ListOp::Contains });
        self.register_scalar("array_slice", ScalarFunction::List { op: ListOp::Slice });
        self.register_scalar("array_value", ScalarFunction::List { op: ListOp::Creation });

        // --- Aggregate ---
        self.register_aggregate("COUNT", AggregateFunction::Count);
        self.register_aggregate("COUNT(*)", AggregateFunction::CountStar);
        self.register_aggregate("COUNT_IF", AggregateFunction::CountIf);
        self.register_aggregate("SUM", AggregateFunction::Sum);
        self.register_aggregate("AVG", AggregateFunction::Avg);
        self.register_aggregate("MIN", AggregateFunction::Min);
        self.register_aggregate("MAX", AggregateFunction::Max);
        self.register_aggregate("COLLECT", AggregateFunction::Collect);
        self.register_aggregate("STDDEV", AggregateFunction::StdDev);
        self.register_aggregate("VARIANCE", AggregateFunction::Variance);
        self.register_aggregate(
            "STRING_AGG",
            AggregateFunction::StringAgg {
                delimiter: ",".to_string(),
            },
        );
        self.register_aggregate(
            "GROUP_CONCAT",
            AggregateFunction::StringAgg {
                delimiter: ",".to_string(),
            },
        );
        self.register_aggregate("PERCENTILE_DISC", AggregateFunction::PercentileDisc { percentile: 0.5 });
        self.register_aggregate("PERCENTILE_CONT", AggregateFunction::PercentileCont { percentile: 0.5 });

        // --- Table ---
        self.register_table("list_tables", TableFunction::ListTables);
    }

    // --- Registration ---

    pub fn register_scalar(&mut self, name: &str, func: ScalarFunction) {
        self.scalar_functions.insert(name.to_lowercase(), func);
    }

    pub fn register_aggregate(&mut self, name: &str, func: AggregateFunction) {
        self.aggregate_functions.insert(name.to_lowercase(), func);
    }

    pub fn register_table(&mut self, name: &str, func: TableFunction) {
        self.table_functions.insert(name.to_lowercase(), func);
    }

    // --- Lookup ---

    pub fn resolve(&self, name: &str) -> Option<ResolvedFunction> {
        let lower = name.to_lowercase();
        if let Some(f) = self.scalar_functions.get(&lower) {
            return Some(ResolvedFunction::Scalar(f.clone()));
        }
        if let Some(f) = self.aggregate_functions.get(&lower) {
            return Some(ResolvedFunction::Aggregate(f.clone()));
        }
        if let Some(f) = self.table_functions.get(&lower) {
            return Some(ResolvedFunction::Table(f.clone()));
        }
        None
    }

    pub fn get_scalar(&self, name: &str) -> Option<&ScalarFunction> {
        self.scalar_functions.get(&name.to_lowercase())
    }

    pub fn get_aggregate(&self, name: &str) -> Option<&AggregateFunction> {
        self.aggregate_functions.get(&name.to_lowercase())
    }

    pub fn get_table(&self, name: &str) -> Option<&TableFunction> {
        self.table_functions.get(&name.to_lowercase())
    }

    /// List all registered functions as (name, kind) pairs.
    /// Kind is one of: "SCALAR", "AGGREGATE", "TABLE".
    pub fn list_all(&self) -> Vec<(String, String)> {
        let mut result = Vec::new();
        for name in self.scalar_functions.keys() {
            result.push((name.clone(), "SCALAR".to_string()));
        }
        for name in self.aggregate_functions.keys() {
            result.push((name.clone(), "AGGREGATE".to_string()));
        }
        for name in self.table_functions.keys() {
            result.push((name.clone(), "TABLE".to_string()));
        }
        result.sort_by(|a, b| a.0.cmp(&b.0));
        result
    }

    pub fn contains(&self, name: &str) -> bool {
        let lower = name.to_lowercase();
        self.scalar_functions.contains_key(&lower)
            || self.aggregate_functions.contains_key(&lower)
            || self.table_functions.contains_key(&lower)
    }

    /// Number of registered scalar functions.
    pub fn scalar_count(&self) -> usize {
        self.scalar_functions.len()
    }

    /// Number of registered aggregate functions.
    pub fn aggregate_count(&self) -> usize {
        self.aggregate_functions.len()
    }

    /// Number of registered table functions.
    pub fn table_count(&self) -> usize {
        self.table_functions.len()
    }

    /// Total number of registered functions.
    pub fn total_count(&self) -> usize {
        self.scalar_count() + self.aggregate_count() + self.table_count()
    }

    /// Execute a table function by name with the given pre-evaluated arguments.
    ///
    /// Returns a `Vec<Vec<Value>>` representing rows of results.
    /// Each inner vec is one row with one or more column values.
    ///
    /// `graph` is an optional graph data source passed to graph-algorithm
    /// table functions. Callers that own a storage catalog (e.g. the query
    /// processor or the connection layer) supply it so GDS functions run
    /// against real node/rel tables; callers without catalog access pass
    /// `None`, in which case the closure may fall back to its built-in data.
    pub fn execute_table_function(
        &self,
        name: &str,
        args: &[Value],
        graph: Option<&dyn crate::graph::GraphDataSource>,
    ) -> Result<Vec<Vec<Value>>, String> {
        use akar_common::vector::DataChunk;

        let func = self
            .get_table(name)
            .ok_or_else(|| format!("Table function '{}' not found", name))?;

        match func {
            TableFunction::ListTables => Err("ListTables requires catalog access — handled at connection level".into()),
            TableFunction::ShowColumns { .. } => {
                Err("ShowColumns requires catalog access — handled at connection level".into())
            }
            TableFunction::Custom { name: custom_name } => Err(format!(
                "Table function '{}' requires an extension or external context to be loaded. \
                 Use LOAD EXTENSION or CALL with the appropriate handler.",
                custom_name
            )),
            TableFunction::CustomTable { name: _, execute } => {
                let mut chunk = DataChunk {
                    fields: Vec::new(),
                    field_types: Vec::new(),
                    size: 0,
                    field_names: vec![],
                    sel_vector: None,
                };
                execute(args, &mut chunk).map(|_| {
                    let mut rows = Vec::new();
                    for row in 0..chunk.size {
                        let mut row_vals = Vec::new();
                        for field_idx in 0..chunk.fields.len() {
                            row_vals.push(chunk.get_value(field_idx, row).unwrap_or(Value::Null));
                        }
                        rows.push(row_vals);
                    }
                    rows
                })
            }
            TableFunction::CustomTableWithGraph { name: _, execute } => {
                let mut chunk = DataChunk {
                    fields: Vec::new(),
                    field_types: Vec::new(),
                    size: 0,
                    field_names: vec![],
                    sel_vector: None,
                };
                execute(args, graph, &mut chunk).map(|_| {
                    let mut rows = Vec::new();
                    for row in 0..chunk.size {
                        let mut row_vals = Vec::new();
                        for field_idx in 0..chunk.fields.len() {
                            row_vals.push(chunk.get_value(field_idx, row).unwrap_or(Value::Null));
                        }
                        rows.push(row_vals);
                    }
                    rows
                })
            }
            TableFunction::ScanCsv { .. }
            | TableFunction::ScanParquet { .. }
            | TableFunction::ScanJson { .. }
            | TableFunction::CurrentSetting { .. } => Err(format!(
                "Table function '{}' cannot be executed via CALL — it requires file path or catalog context. \
                 Use COPY FROM 'file' FORMAT CSV/PARQUET/JSON or CALL current_setting('key') via the connection layer.",
                name
            )),
        }
    }
}