graphdblite 0.1.2

Embedded graph database with Cypher support. SQLite-grade simplicity, graph-native performance.
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
use std::sync::atomic::{AtomicUsize, Ordering};

use rusqlite::Connection;

use crate::cypher::ast::*;
use crate::cypher::ir::*;
use crate::index;
use crate::types::Value;

/// Global counter for unique anonymous variable aliases across all plan_single_pattern calls.
static ANON_COUNTER: AtomicUsize = AtomicUsize::new(0);

/// Suggest the closest in-scope name for a misspelled identifier.
///
/// Returns the closest candidate within Levenshtein distance ≤ 2 (or ≤ 1
/// for short names), ignoring case. Returns `None` if nothing close enough
/// is found — callers should not blindly attach a suggestion that's only
/// vaguely similar.
pub fn plan(conn: &Connection, stmt: &Statement) -> crate::types::Result<LogicalOp> {
    let mut op = plan_inner(conn, stmt, false)?;
    apply_post_passes(conn, &mut op);
    Ok(op)
}

/// Run the standard post-planning rewrites in order. Kept as a single
/// helper so every plan entry point (`plan`, `plan_with_procedures`,
/// `plan_subquery`) applies the same set without drift.
pub(in crate::cypher::planner) fn apply_post_passes(conn: &Connection, op: &mut LogicalOp) {
    push_limit_into_var_length_expand(op);
    rewrite_id_filter_to_lookup(op);
    rewrite_text_filter_to_fts(conn, op);
}

/// Optimization: rewrite `Filter(Scan { label: "", alias }, id(alias) = X)`
/// into `IdLookup { alias, value: X }`. Critical for `WHERE id(n) = $x`
/// usage (e.g. the Python binding's `batch_create_edges` helper, which
/// otherwise full-scans the entire node table per UNWIND row). Recurses
/// into all child operators so nested patterns benefit too.
///
/// Only rewrites the unlabeled-scan form for simplicity. A labeled
/// `MATCH (a:Foo) WHERE id(a) = $x` is a much rarer pattern and we leave
/// it on the existing Scan+Filter path; adding it would need a "verify
/// label after lookup" wrapper that this pass doesn't yet emit.
pub(in crate::cypher::planner) fn rewrite_id_filter_to_lookup(op: &mut LogicalOp) {
    // First recurse so inner subtrees are optimized before we try to
    // pattern-match this node.
    walk_children_mut(op, rewrite_id_filter_to_lookup);

    if !matches!(op, LogicalOp::Filter { .. }) {
        return;
    }

    // Take ownership of the Filter so we can rebuild freely.
    let placeholder = LogicalOp::SingleRow;
    let LogicalOp::Filter { input, predicate } = std::mem::replace(op, placeholder) else {
        unreachable!()
    };

    // Case 1 — non-correlated: Filter(Scan{"", alias}, id(alias) = expr).
    if let LogicalOp::Scan { label, alias } = input.as_ref() {
        if label.is_empty() {
            if let Some(value_expr) = extract_id_eq_alias(&predicate, alias) {
                if !expr_references_var(&value_expr, alias) {
                    *op = LogicalOp::IdLookup {
                        alias: alias.clone(),
                        value_expr,
                    };
                    return;
                }
            }
        }
    }

    // Case 2 — correlated: Filter(CorrelatedJoin{ input, right: Scan{"", alias} }, id(alias) = expr).
    // The WHERE filter sits *outside* the join in multi-clause statements
    // (UNWIND + MATCH ... WHERE id(a) = row.s + MATCH ...). Push the
    // id-predicate down into the right side as an IdLookup, drop the Filter.
    //
    // Safe because `id(alias) = expr`:
    //   - constrains only `alias` (a binding produced by the right side)
    //   - uses `expr` which references only outer/input-side bindings (we
    //     check `expr_references_var(&value_expr, alias)` to enforce this)
    if let LogicalOp::CorrelatedJoin { right, .. } = input.as_ref() {
        if let LogicalOp::Scan { label, alias } = right.as_ref() {
            if label.is_empty() {
                if let Some(value_expr) = extract_id_eq_alias(&predicate, alias) {
                    if !expr_references_var(&value_expr, alias) {
                        let alias = alias.clone();
                        // Rebuild: replace right with IdLookup, drop Filter.
                        let LogicalOp::CorrelatedJoin {
                            input: join_input,
                            same_match,
                            ..
                        } = *input
                        else {
                            unreachable!("matched above")
                        };
                        *op = LogicalOp::CorrelatedJoin {
                            input: join_input,
                            right: Box::new(LogicalOp::IdLookup { alias, value_expr }),
                            same_match,
                        };
                        return;
                    }
                }
            }
        }
    }

    // No rewrite applied — restore the Filter we took ownership of.
    *op = LogicalOp::Filter { input, predicate };
}

/// If `predicate` is `id(alias) = <expr>` (in either operand order),
/// return the other side as an `Expr`. The caller decides whether the
/// expression is safe to hoist (e.g. doesn't reference the alias itself).
fn extract_id_eq_alias(predicate: &Expr, alias: &str) -> Option<Expr> {
    let (left, right) = match &predicate.kind {
        ExprKind::BinaryOp {
            left,
            op: BinOp::Eq,
            right,
        } => (left.as_ref(), right.as_ref()),
        _ => return None,
    };

    if matches_id_of_alias(left, alias) {
        return Some(right.clone());
    }
    if matches_id_of_alias(right, alias) {
        return Some(left.clone());
    }
    None
}

fn matches_id_of_alias(expr: &Expr, alias: &str) -> bool {
    let ExprKind::FunctionCall { name, args, .. } = &expr.kind else {
        return false;
    };
    if !name.eq_ignore_ascii_case("id") || args.len() != 1 {
        return false;
    }
    matches!(&args[0].kind, ExprKind::Variable(v) if v == alias)
}

/// Optimization: rewrite `Filter(Scan{label, alias}, alias.prop OP term)`
/// into `FullTextLookup` when an FTS index exists on `(label, prop)`
/// and `OP` is one of `CONTAINS` / `STARTS WITH` / `ENDS WITH`.
///
/// Handles conjunction: when the filter is `A AND B AND ...`, picks
/// the first FTS-eligible conjunct, rebuilds the rest as a residual
/// filter carried inside the `FullTextLookup`.
///
/// Only handles the non-correlated form: `Filter(Scan{label, alias}, ...)`.
/// The correlated form is handled in Task 14.
pub(in crate::cypher::planner) fn rewrite_text_filter_to_fts(
    conn: &Connection,
    op: &mut LogicalOp,
) {
    // Recurse first so inner subtrees are optimized before pattern-matching.
    match op {
        LogicalOp::Expand { input, .. }
        | LogicalOp::Filter { input, .. }
        | LogicalOp::Project { input, .. }
        | LogicalOp::Aggregate { input, .. }
        | LogicalOp::Sort { input, .. }
        | LogicalOp::Distinct { input }
        | LogicalOp::Skip { input, .. }
        | LogicalOp::Limit { input, .. }
        | LogicalOp::MatchCreate { input, .. }
        | LogicalOp::Delete { input, .. }
        | LogicalOp::SetProperty { input, .. }
        | LogicalOp::SetLabel { input, .. }
        | LogicalOp::SetProperties { input, .. }
        | LogicalOp::Remove { input, .. }
        | LogicalOp::MatchMerge { input, .. }
        | LogicalOp::MaterializePath { input, .. }
        | LogicalOp::Unwind { input, .. }
        | LogicalOp::Call { input, .. }
        | LogicalOp::ShortestPath { input, .. } => rewrite_text_filter_to_fts(conn, input),
        LogicalOp::CrossProduct { left, right, .. } => {
            rewrite_text_filter_to_fts(conn, left);
            rewrite_text_filter_to_fts(conn, right);
        }
        LogicalOp::CorrelatedJoin { input, right, .. }
        | LogicalOp::LeftOuterJoin { input, right, .. } => {
            rewrite_text_filter_to_fts(conn, input);
            rewrite_text_filter_to_fts(conn, right);
        }
        LogicalOp::Union { inputs, .. } => {
            for inp in inputs {
                rewrite_text_filter_to_fts(conn, inp);
            }
        }
        LogicalOp::CreateSequence { ops } => {
            for inner in ops {
                rewrite_text_filter_to_fts(conn, inner);
            }
        }
        LogicalOp::SingleRow
        | LogicalOp::Scan { .. }
        | LogicalOp::IndexLookup { .. }
        | LogicalOp::IdLookup { .. }
        | LogicalOp::FullTextLookup { .. }
        | LogicalOp::CreateNode { .. }
        | LogicalOp::CreateEdge { .. }
        | LogicalOp::Merge { .. }
        | LogicalOp::CreateIndex { .. }
        | LogicalOp::DropIndex { .. }
        | LogicalOp::EmptyRow => {}
    }

    if !matches!(op, LogicalOp::Filter { .. }) {
        return;
    }

    // Take ownership of the Filter to potentially rebuild.
    let placeholder = LogicalOp::SingleRow;
    let LogicalOp::Filter { input, predicate } = std::mem::replace(op, placeholder) else {
        unreachable!()
    };

    // Non-correlated: Filter(Scan{label, alias}, alias.prop OP term).
    if let LogicalOp::Scan { label, alias } = input.as_ref() {
        if !label.is_empty() {
            // 1) Single-predicate / AND-chain rewrite (existing).
            if let Some((prop, fts_op, term, residual, needs_ci)) =
                extract_fts_predicate(&predicate, alias)
            {
                if fts_rewrite_is_usable(conn, label, &prop, needs_ci) {
                    *op = LogicalOp::FullTextLookup {
                        label: label.clone(),
                        alias: alias.clone(),
                        property: prop,
                        op: fts_op,
                        term,
                        remaining_filters: residual,
                    };
                    return;
                }
            }
            // 2) Pure OR-chain → Union of FullTextLookups.
            if let Some(union) = try_rewrite_or_chain_to_union(conn, label, alias, &predicate) {
                *op = union;
                return;
            }
        }
    }

    // Correlated: Filter(CorrelatedJoin{ input, right: Scan{label, alias} },
    //                    alias.prop OP term).
    // Mirrors the IdLookup correlated case — push the FTS lookup into the
    // right side of the join, dropping the outer Filter.
    if let LogicalOp::CorrelatedJoin { right, .. } = input.as_ref() {
        if let LogicalOp::Scan { label, alias } = right.as_ref() {
            if !label.is_empty() {
                if let Some((prop, fts_op, term, residual, needs_ci)) =
                    extract_fts_predicate(&predicate, alias)
                {
                    if fts_rewrite_is_usable(conn, label, &prop, needs_ci) {
                        let label = label.clone();
                        let alias = alias.clone();
                        let LogicalOp::CorrelatedJoin {
                            input: join_input,
                            same_match,
                            ..
                        } = *input
                        else {
                            unreachable!("matched above")
                        };
                        let new_right = LogicalOp::FullTextLookup {
                            label,
                            alias,
                            property: prop,
                            op: fts_op,
                            term,
                            remaining_filters: residual,
                        };
                        *op = LogicalOp::CorrelatedJoin {
                            input: join_input,
                            right: Box::new(new_right),
                            same_match,
                        };
                        return;
                    }
                }
            }
        }
    }

    // No rewrite applied — restore the Filter we took ownership of.
    *op = LogicalOp::Filter { input, predicate };
}

/// Kind of FTS index present on `(label, property)`.
enum FtsKind {
    CaseSensitive,
    CaseInsensitive,
}

/// Return the kind of FTS index on `(label, property)`, or `None` if no
/// FTS index exists. Errors from introspection (e.g. missing index) map
/// to `None` so callers fall back to the scan path cleanly.
fn fts_kind_for(conn: &Connection, label: &str, property: &str) -> Option<FtsKind> {
    match crate::fts::fts_tokenizer_kind(conn, label, property) {
        Ok(crate::fts::FtsTokenizerKind::TrigramCaseSensitive) => Some(FtsKind::CaseSensitive),
        Ok(crate::fts::FtsTokenizerKind::TrigramCaseInsensitive) => Some(FtsKind::CaseInsensitive),
        Ok(crate::fts::FtsTokenizerKind::Word) => None,
        Err(_) => None,
    }
}

/// Whether an FTS rewrite is safe given the index kind and whether the
/// matched predicate needs case-insensitive semantics. Case-insensitive
/// predicates require a CI index; case-sensitive predicates work with
/// either kind.
fn fts_rewrite_is_usable(conn: &Connection, label: &str, property: &str, needs_ci: bool) -> bool {
    match fts_kind_for(conn, label, property) {
        Some(FtsKind::CaseInsensitive) => true,
        Some(FtsKind::CaseSensitive) => !needs_ci,
        None => false,
    }
}

/// Result of matching an FTS-eligible binop.
struct MatchedFts {
    property: String,
    op: crate::cypher::ir::FullTextOp,
    term: Expr,
    /// True when the matched predicate has the symmetric
    /// `toLower(alias.prop) <op> toLower(rhs)` shape and therefore
    /// requires a case-insensitive FTS index to be rewritten safely.
    needs_ci: bool,
}

/// Try to extract an FTS-eligible predicate from `predicate` (or a
/// top-level conjunction). Returns `(property, fts_op, term, residual, needs_ci)`.
/// The residual carries any conjuncts not consumed by the rewrite.
fn extract_fts_predicate(
    predicate: &Expr,
    alias: &str,
) -> Option<(
    String,
    crate::cypher::ir::FullTextOp,
    Expr,
    Option<Expr>,
    bool,
)> {
    let conjuncts = flatten_top_level_and(predicate);
    for (idx, c) in conjuncts.iter().enumerate() {
        if let Some(matched) = match_fts_binop(c, alias) {
            let MatchedFts {
                property: prop,
                op: fts_op,
                term,
                needs_ci,
            } = matched;
            let residual_parts: Vec<&Expr> = conjuncts
                .iter()
                .enumerate()
                .filter(|(i, _)| *i != idx)
                .map(|(_, e)| *e)
                .collect();
            let residual = rebuild_and(&residual_parts);
            return Some((prop, fts_op, term, residual, needs_ci));
        }
    }
    None
}

/// Try to rewrite a pure OR-chain of FTS-eligible predicates into a
/// `Union` of `FullTextLookup` nodes. Returns `None` if:
/// - the predicate is not a top-level OR (single disjunct)
/// - any disjunct is not an FTS-eligible binop against `alias.<prop>`
/// - any disjunct's `(label, prop)` lacks an FTS index
///
/// Caller falls back to the existing `Filter(Scan, …)` plan on `None`.
fn try_rewrite_or_chain_to_union(
    conn: &Connection,
    label: &str,
    alias: &str,
    predicate: &Expr,
) -> Option<LogicalOp> {
    let disjuncts = flatten_top_level_or(predicate);
    if disjuncts.len() < 2 {
        return None;
    }

    let mut inputs: Vec<LogicalOp> = Vec::with_capacity(disjuncts.len());
    for d in disjuncts {
        let matched = match_fts_binop(d, alias)?;
        let MatchedFts {
            property: prop,
            op: fts_op,
            term,
            needs_ci,
        } = matched;
        if !fts_rewrite_is_usable(conn, label, &prop, needs_ci) {
            return None;
        }
        inputs.push(LogicalOp::FullTextLookup {
            label: label.to_string(),
            alias: alias.to_string(),
            property: prop,
            op: fts_op,
            term,
            remaining_filters: None,
        });
    }

    Some(LogicalOp::Union { inputs, all: false })
}

/// Match an FTS binary op against `alias.<prop>`, optionally with both
/// sides wrapped in `toLower(...)` for the case-insensitive idiom.
///
/// Recognized shapes:
/// - `alias.prop <op> rhs`                       → `needs_ci = false`
/// - `toLower(alias.prop) <op> toLower(rhs)`     → `needs_ci = true`
///
/// `toLower` matching is case-insensitive on the function name, mirroring
/// the eval dispatch in `cypher::eval::functions`. Asymmetric wrappings
/// (only one side `toLower`'d) return `None` — callers fall back to a
/// label scan with per-row eval, which is correct but unaccelerated.
fn match_fts_binop(e: &Expr, alias: &str) -> Option<MatchedFts> {
    use crate::cypher::ir::FullTextOp;
    let ExprKind::BinaryOp { left, op, right } = &e.kind else {
        return None;
    };
    let fts_op = match op {
        BinOp::Contains => FullTextOp::Contains,
        BinOp::StartsWith => FullTextOp::StartsWith,
        BinOp::EndsWith => FullTextOp::EndsWith,
        _ => return None,
    };

    // Symmetric toLower form first — both sides must be wrapped.
    if let (Some(prop), Some(inner_rhs)) = (
        unwrap_tolower_of_property(left, alias),
        unwrap_tolower(right),
    ) {
        return Some(MatchedFts {
            property: prop,
            op: fts_op,
            term: inner_rhs,
            needs_ci: true,
        });
    }

    // Plain `alias.prop <op> rhs`.
    let ExprKind::Property(var, prop) = &left.kind else {
        return None;
    };
    if var != alias {
        return None;
    }
    Some(MatchedFts {
        property: prop.clone(),
        op: fts_op,
        term: (**right).clone(),
        needs_ci: false,
    })
}

/// Return `Some(prop)` when `e` is `toLower(alias.prop)`. Function-name
/// match is case-insensitive (`toLower` / `tolower` / etc.).
fn unwrap_tolower_of_property(e: &Expr, alias: &str) -> Option<String> {
    let ExprKind::FunctionCall { name, args, .. } = &e.kind else {
        return None;
    };
    if !name.eq_ignore_ascii_case("toLower") {
        return None;
    }
    if args.len() != 1 {
        return None;
    }
    let ExprKind::Property(var, prop) = &args[0].kind else {
        return None;
    };
    if var != alias {
        return None;
    }
    Some(prop.clone())
}

/// Return `Some(inner)` when `e` is `toLower(inner)`. Otherwise `None`.
fn unwrap_tolower(e: &Expr) -> Option<Expr> {
    let ExprKind::FunctionCall { name, args, .. } = &e.kind else {
        return None;
    };
    if !name.eq_ignore_ascii_case("toLower") {
        return None;
    }
    if args.len() != 1 {
        return None;
    }
    Some(args[0].clone())
}

/// Flatten a top-level `AND` chain into individual conjuncts.
fn flatten_top_level_and(e: &Expr) -> Vec<&Expr> {
    let mut out = Vec::new();
    fn walk<'a>(e: &'a Expr, out: &mut Vec<&'a Expr>) {
        if let ExprKind::BinaryOp {
            left,
            op: BinOp::And,
            right,
        } = &e.kind
        {
            walk(left, out);
            walk(right, out);
        } else {
            out.push(e);
        }
    }
    walk(e, &mut out);
    out
}

/// Flatten a top-level `OR` chain into individual disjuncts. Mirrors
/// `flatten_top_level_and`. A non-OR expression returns a single-element
/// vector.
fn flatten_top_level_or(e: &Expr) -> Vec<&Expr> {
    let mut out = Vec::new();
    fn walk<'a>(e: &'a Expr, out: &mut Vec<&'a Expr>) {
        if let ExprKind::BinaryOp {
            left,
            op: BinOp::Or,
            right,
        } = &e.kind
        {
            walk(left, out);
            walk(right, out);
        } else {
            out.push(e);
        }
    }
    walk(e, &mut out);
    out
}

/// Rebuild an `AND` chain from a slice of expression references.
/// Returns `None` if the slice is empty.
fn rebuild_and(parts: &[&Expr]) -> Option<Expr> {
    let mut iter = parts.iter().copied().cloned();
    let first = iter.next()?;
    Some(iter.fold(first, |acc, e| {
        Expr::synthetic(ExprKind::BinaryOp {
            left: Box::new(acc),
            op: BinOp::And,
            right: Box::new(e),
        })
    }))
}

/// Return true if `expr` references the named variable anywhere in its tree.
/// Used to reject self-referential id-lookups like `WHERE id(a) = id(a)`.
fn expr_references_var(expr: &Expr, name: &str) -> bool {
    use ExprKind::*;
    match &expr.kind {
        Variable(v) => v == name,
        Property(v, _) => v == name,
        BinaryOp { left, right, .. } => {
            expr_references_var(left, name) || expr_references_var(right, name)
        }
        Not(inner) | IsNull(inner) | IsNotNull(inner) => expr_references_var(inner, name),
        FunctionCall { args, .. } => args.iter().any(|a| expr_references_var(a, name)),
        Case {
            operand,
            alternatives,
            default,
        } => {
            operand
                .as_deref()
                .is_some_and(|e| expr_references_var(e, name))
                || alternatives
                    .iter()
                    .any(|(c, r)| expr_references_var(c, name) || expr_references_var(r, name))
                || default
                    .as_deref()
                    .is_some_and(|e| expr_references_var(e, name))
        }
        List(items) => items.iter().any(|e| expr_references_var(e, name)),
        _ => false,
    }
}

/// Optimization: push a `LIMIT N` cap down into a var-length `Expand` when the
/// chain between them is row-preserving.
///
/// Safe pattern: `Limit { count: N, input: chain }` where `chain` is zero or
/// more `Project` (always 1:1) wrapping a single `Expand { var_length: true }`.
/// Anything else (Sort, Distinct, Filter, Aggregate, CrossProduct, another
/// Expand) breaks the equivalence — `LIMIT` and Expand row counts diverge.
///
/// Recurses into all child operators so nested patterns are still optimized.
pub(in crate::cypher::planner) fn push_limit_into_var_length_expand(op: &mut LogicalOp) {
    if let LogicalOp::Limit { input, count } = op {
        if let Some(LogicalOp::Expand { result_cap, .. }) = find_pushdown_target(input) {
            // Take the tighter of any existing cap and the new one.
            let new_cap = match *result_cap {
                Some(existing) => existing.min(*count),
                None => *count,
            };
            *result_cap = Some(new_cap);
        }
    }
    // Recurse into children so nested Limit/Expand chains (e.g. inside a
    // CorrelatedJoin's right side) also get the pushdown.
    walk_children_mut(op, push_limit_into_var_length_expand);
}

/// Returns a mutable reference to the var-length Expand directly reachable from
/// `op` through only Project (or empty) wrappers, or `None` if any disqualifying
/// operator is in the chain.
pub(in crate::cypher::planner) fn find_pushdown_target(
    op: &mut LogicalOp,
) -> Option<&mut LogicalOp> {
    match op {
        LogicalOp::Project { input, .. } => find_pushdown_target(input),
        LogicalOp::Expand { var_length, .. } if *var_length => Some(op),
        _ => None,
    }
}

/// Apply `f` to each direct child operator (skipping non-LogicalOp fields).
pub(in crate::cypher::planner) fn walk_children_mut(op: &mut LogicalOp, f: fn(&mut LogicalOp)) {
    match op {
        LogicalOp::Expand { input, .. }
        | LogicalOp::Filter { input, .. }
        | LogicalOp::Project { input, .. }
        | LogicalOp::Aggregate { input, .. }
        | LogicalOp::Sort { input, .. }
        | LogicalOp::Distinct { input }
        | LogicalOp::Skip { input, .. }
        | LogicalOp::Limit { input, .. }
        | LogicalOp::MatchCreate { input, .. }
        | LogicalOp::Delete { input, .. }
        | LogicalOp::SetProperty { input, .. }
        | LogicalOp::SetLabel { input, .. }
        | LogicalOp::SetProperties { input, .. }
        | LogicalOp::Remove { input, .. }
        | LogicalOp::MatchMerge { input, .. }
        | LogicalOp::MaterializePath { input, .. }
        | LogicalOp::Unwind { input, .. }
        | LogicalOp::Call { input, .. }
        | LogicalOp::ShortestPath { input, .. } => f(input),
        LogicalOp::CrossProduct { left, right, .. } => {
            f(left);
            f(right);
        }
        LogicalOp::CorrelatedJoin { input, right, .. }
        | LogicalOp::LeftOuterJoin { input, right, .. } => {
            f(input);
            f(right);
        }
        LogicalOp::Union { inputs, .. } => {
            for inp in inputs {
                f(inp);
            }
        }
        LogicalOp::CreateSequence { ops } => {
            for inner in ops {
                f(inner);
            }
        }
        LogicalOp::SingleRow
        | LogicalOp::Scan { .. }
        | LogicalOp::IndexLookup { .. }
        | LogicalOp::IdLookup { .. }
        | LogicalOp::FullTextLookup { .. }
        | LogicalOp::CreateNode { .. }
        | LogicalOp::CreateEdge { .. }
        | LogicalOp::Merge { .. }
        | LogicalOp::CreateIndex { .. }
        | LogicalOp::DropIndex { .. }
        | LogicalOp::EmptyRow => {}
    }
}

/// Plan a statement that may be inside a subquery (EXISTS).
/// Subquery context disables certain validations that require full scope.
pub fn plan_subquery(conn: &Connection, stmt: &Statement) -> crate::types::Result<LogicalOp> {
    let mut op = plan_inner(conn, stmt, true)?;
    apply_post_passes(conn, &mut op);
    Ok(op)
}

/// Plan a statement with a procedure registry for CALL validation.
pub fn plan_with_procedures(
    conn: &Connection,
    stmt: &Statement,
    procedures: &crate::cypher::procedure::ProcedureRegistry,
    params: Option<&std::collections::HashMap<String, Value>>,
) -> crate::types::Result<LogicalOp> {
    match stmt {
        Statement::Call {
            procedure_name,
            args,
            implicit_args,
            yield_items,
            yield_star,
            return_clause,
            order_by,
            skip,
            limit,
        } => plan_call(
            conn,
            procedure_name,
            args,
            *implicit_args,
            yield_items.as_deref(),
            *yield_star,
            return_clause.as_ref(),
            order_by,
            skip.as_deref(),
            limit.as_deref(),
            procedures,
            params,
        ),
        Statement::Explain(inner) => plan_with_procedures(conn, inner, procedures, params),
        _ => plan(conn, stmt),
    }
    .map(|mut op| {
        apply_post_passes(conn, &mut op);
        op
    })
}

#[cfg(test)]
mod limit_pushdown_tests {
    use super::*;
    use crate::cypher::parser;
    use rusqlite::Connection;

    fn plan_query(query: &str) -> LogicalOp {
        let conn = Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        let stmt = parser::parse(query).unwrap();
        plan(&conn, &stmt).unwrap()
    }

    fn find_var_length_expand(op: &LogicalOp) -> Option<&LogicalOp> {
        match op {
            LogicalOp::Expand {
                var_length: true, ..
            } => Some(op),
            LogicalOp::Limit { input, .. }
            | LogicalOp::Project { input, .. }
            | LogicalOp::Filter { input, .. }
            | LogicalOp::Sort { input, .. }
            | LogicalOp::Distinct { input } => find_var_length_expand(input),
            _ => None,
        }
    }

    #[test]
    fn pushdown_applies_to_simple_var_length_with_limit() {
        let plan = plan_query("MATCH (a)-[*1..3]->(b) RETURN b LIMIT 10");
        let expand = find_var_length_expand(&plan).expect("expected var-length Expand");
        let LogicalOp::Expand { result_cap, .. } = expand else {
            unreachable!()
        };
        assert_eq!(*result_cap, Some(10));
    }

    #[test]
    fn pushdown_skipped_when_sort_intervenes() {
        let plan = plan_query("MATCH (a)-[*1..3]->(b) RETURN b ORDER BY b LIMIT 10");
        let expand = find_var_length_expand(&plan).expect("expected var-length Expand");
        let LogicalOp::Expand { result_cap, .. } = expand else {
            unreachable!()
        };
        assert_eq!(
            *result_cap, None,
            "Sort between Limit and Expand should block pushdown"
        );
    }

    #[test]
    fn pushdown_skipped_for_fixed_length_expand() {
        let plan = plan_query("MATCH (a)-[r]->(b) RETURN b LIMIT 10");
        // Fixed-length Expand is not a pushdown target; just verify no crash.
        match &plan {
            LogicalOp::Limit { input, count } => {
                assert_eq!(*count, 10);
                // Walk down — any Expand we find should have result_cap=None.
                fn check(op: &LogicalOp) {
                    if let LogicalOp::Expand { result_cap, .. } = op {
                        assert_eq!(*result_cap, None);
                    }
                    match op {
                        LogicalOp::Project { input, .. }
                        | LogicalOp::Expand { input, .. }
                        | LogicalOp::Filter { input, .. } => check(input),
                        _ => {}
                    }
                }
                check(input);
            }
            _ => panic!("expected Limit at top, got {:?}", plan.op_name()),
        }
    }
}

#[cfg(test)]
mod plan_tests {
    use super::plan;
    use crate::cypher::ir::*;
    use crate::cypher::parser::parse;
    use crate::types::Direction;
    use rusqlite::Connection;

    fn plan_query(q: &str) -> LogicalOp {
        let conn = Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        let stmt = parse(q).unwrap();
        plan(&conn, &stmt).unwrap()
    }

    #[test]
    fn plan_simple_scan() {
        let op = plan_query("MATCH (n:Person) RETURN n");
        match op {
            LogicalOp::Project { input, items, .. } => {
                assert_eq!(items.len(), 1);
                match *input {
                    LogicalOp::Scan {
                        ref label,
                        ref alias,
                    } => {
                        assert_eq!(label, "Person");
                        assert_eq!(alias, "n");
                    }
                    _ => panic!("expected Scan, got {input:?}"),
                }
            }
            _ => panic!("expected Project, got {op:?}"),
        }
    }

    #[test]
    fn plan_scan_with_expand() {
        let op = plan_query("MATCH (a:Person)-[:KNOWS]->(b:Person) RETURN b");
        match op {
            LogicalOp::Project { input, .. } => match *input {
                LogicalOp::Filter { input, .. } => match *input {
                    LogicalOp::Expand {
                        ref src_alias,
                        ref dst_alias,
                        ref edge_types,
                        direction,
                        min_hops,
                        max_hops,
                        ..
                    } => {
                        assert_eq!(src_alias, "a");
                        assert_eq!(dst_alias, "b");
                        assert_eq!(edge_types.first().map(|s| s.as_str()), Some("KNOWS"));
                        assert_eq!(direction, Direction::Outgoing);
                        assert_eq!(min_hops, 1);
                        assert_eq!(max_hops, 1);
                    }
                    _ => panic!("expected Expand"),
                },
                _ => panic!("expected Filter for destination label"),
            },
            _ => panic!("expected Project"),
        }
    }

    #[test]
    fn plan_variable_length_expand() {
        let op = plan_query("MATCH (a)-[:CALLS*1..5]->(b) RETURN b");
        match op {
            LogicalOp::Project { input, .. } => match *input {
                LogicalOp::Expand {
                    min_hops, max_hops, ..
                } => {
                    assert_eq!(min_hops, 1);
                    assert_eq!(max_hops, 5);
                }
                _ => panic!("expected Expand"),
            },
            _ => panic!("expected Project"),
        }
    }

    #[test]
    fn plan_with_filter() {
        let op = plan_query("MATCH (n:Person) WHERE n.age = 30 RETURN n");
        match op {
            LogicalOp::Project { input, .. } => match *input {
                LogicalOp::Filter { .. } => {}
                _ => panic!("expected Filter"),
            },
            _ => panic!("expected Project"),
        }
    }

    #[test]
    fn plan_with_aggregate() {
        let op = plan_query("MATCH (n:Person) RETURN count(*) AS cnt");
        match op {
            LogicalOp::Project { input, .. } => match *input {
                LogicalOp::Aggregate { ref aggregates, .. } => {
                    assert_eq!(aggregates.len(), 1);
                    assert_eq!(aggregates[0].function, AggregateFunction::Count);
                }
                _ => panic!("expected Aggregate"),
            },
            _ => panic!("expected Project"),
        }
    }

    #[test]
    fn plan_with_order_by_and_limit() {
        let op = plan_query("MATCH (n:Person) RETURN n.name ORDER BY n.name LIMIT 5");
        match op {
            LogicalOp::Limit { input, count } => {
                assert_eq!(count, 5);
                match *input {
                    LogicalOp::Project { input, .. } => match *input {
                        LogicalOp::Sort { .. } => {}
                        _ => panic!("expected Sort"),
                    },
                    _ => panic!("expected Project"),
                }
            }
            _ => panic!("expected Limit"),
        }
    }

    #[test]
    fn plan_create_node() {
        let op = plan_query("CREATE (n:Person {name: 'Alice'})");
        match op {
            LogicalOp::CreateNode {
                labels,
                alias,
                properties,
            } => {
                assert_eq!(labels, vec!["Person".to_string()]);
                assert_eq!(alias.as_deref(), Some("n"));
                assert_eq!(properties.len(), 1);
            }
            _ => panic!("expected CreateNode, got {op:?}"),
        }
    }

    #[test]
    fn plan_create_edge() {
        let op = plan_query("CREATE (a:Person {name: 'Alice'})-[:KNOWS]->(b:Person {name: 'Bob'})");
        match op {
            LogicalOp::CreateSequence { ref ops } => {
                assert_eq!(ops.len(), 3);
                assert!(matches!(ops[0], LogicalOp::CreateNode { .. }));
                assert!(matches!(ops[1], LogicalOp::CreateNode { .. }));
                assert!(matches!(ops[2], LogicalOp::CreateEdge { .. }));
            }
            _ => panic!("expected CreateSequence, got {op:?}"),
        }
    }

    #[test]
    fn plan_delete() {
        let op = plan_query("MATCH (n:Person) WHERE n.name = 'Alice' DELETE n");
        match op {
            LogicalOp::Delete { exprs, .. } => {
                assert_eq!(exprs.len(), 1);
                assert!(matches!(
                    &exprs[0].kind,
                    crate::cypher::ast::ExprKind::Variable(v) if v == "n"
                ));
            }
            _ => panic!("expected Delete"),
        }
    }

    #[test]
    fn plan_set_property() {
        let op = plan_query("MATCH (n:Person) WHERE n.name = 'Alice' SET n.age = 31");
        match op {
            LogicalOp::SetProperty { assignments, .. } => {
                assert_eq!(assignments.len(), 1);
                assert_eq!(assignments[0].property, "age");
            }
            _ => panic!("expected SetProperty"),
        }
    }

    #[test]
    fn plan_merge() {
        let op = plan_query(
            "MERGE (n:Person {name: 'Alice'}) ON CREATE SET n.created = true ON MATCH SET n.seen = true",
        );
        match op {
            LogicalOp::Merge {
                on_create,
                on_match,
                ..
            } => {
                assert_eq!(on_create.len(), 1);
                assert_eq!(on_match.len(), 1);
            }
            _ => panic!("expected Merge"),
        }
    }
}

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

    #[test]
    fn flatten_top_level_or_splits_chain() {
        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};

        let lit = |s: &str| Expr::synthetic(ExprKind::Literal(LiteralValue::String(s.to_string())));
        let or = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Or,
                right: Box::new(r),
            })
        };

        // `'a' OR 'b' OR 'c'` parses left-associative as `((a OR b) OR c)`.
        let chain = or(or(lit("a"), lit("b")), lit("c"));
        let parts = flatten_top_level_or(&chain);
        assert_eq!(parts.len(), 3);
    }

    #[test]
    fn flatten_top_level_or_returns_single_for_non_or() {
        use crate::cypher::ast::{Expr, ExprKind, LiteralValue};
        let lit = Expr::synthetic(ExprKind::Literal(LiteralValue::String("x".to_string())));
        let parts = flatten_top_level_or(&lit);
        assert_eq!(parts.len(), 1);
    }

    #[test]
    fn try_rewrite_or_chain_two_indexed_disjuncts_returns_union() {
        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "title").unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "body").unwrap();

        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};
        let prop = |alias: &str, p: &str| {
            Expr::synthetic(ExprKind::Property(alias.to_string(), p.to_string()))
        };
        let lit = |s: &str| Expr::synthetic(ExprKind::Literal(LiteralValue::String(s.to_string())));
        let contains = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Contains,
                right: Box::new(r),
            })
        };
        let or = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Or,
                right: Box::new(r),
            })
        };
        let predicate = or(
            contains(prop("n", "title"), lit("x")),
            contains(prop("n", "body"), lit("x")),
        );

        let result = try_rewrite_or_chain_to_union(&conn, "Doc", "n", &predicate);
        let plan = result.expect("expected Some(Union)");
        match plan {
            LogicalOp::Union { inputs, all: false } => {
                assert_eq!(inputs.len(), 2);
                for inp in &inputs {
                    assert!(
                        matches!(inp, LogicalOp::FullTextLookup { .. }),
                        "expected FullTextLookup, got {inp:?}"
                    );
                }
            }
            other => panic!("expected Union, got {other:?}"),
        }
    }

    #[test]
    fn try_rewrite_or_chain_non_or_returns_none() {
        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "title").unwrap();

        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};
        let predicate = Expr::synthetic(ExprKind::BinaryOp {
            left: Box::new(Expr::synthetic(ExprKind::Property(
                "n".to_string(),
                "title".to_string(),
            ))),
            op: BinOp::Contains,
            right: Box::new(Expr::synthetic(ExprKind::Literal(LiteralValue::String(
                "x".to_string(),
            )))),
        });
        assert!(try_rewrite_or_chain_to_union(&conn, "Doc", "n", &predicate).is_none());
    }

    #[test]
    fn try_rewrite_or_chain_missing_index_returns_none() {
        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "title").unwrap();
        // body has no FTS index

        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};
        let prop = |alias: &str, p: &str| {
            Expr::synthetic(ExprKind::Property(alias.to_string(), p.to_string()))
        };
        let lit = |s: &str| Expr::synthetic(ExprKind::Literal(LiteralValue::String(s.to_string())));
        let contains = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Contains,
                right: Box::new(r),
            })
        };
        let or = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Or,
                right: Box::new(r),
            })
        };
        let predicate = or(
            contains(prop("n", "title"), lit("x")),
            contains(prop("n", "body"), lit("x")),
        );
        assert!(try_rewrite_or_chain_to_union(&conn, "Doc", "n", &predicate).is_none());
    }

    #[test]
    fn try_rewrite_or_chain_non_fts_disjunct_returns_none() {
        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "title").unwrap();

        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};
        let prop = |alias: &str, p: &str| {
            Expr::synthetic(ExprKind::Property(alias.to_string(), p.to_string()))
        };
        let lit_str =
            |s: &str| Expr::synthetic(ExprKind::Literal(LiteralValue::String(s.to_string())));
        let lit_int = |n: i64| Expr::synthetic(ExprKind::Literal(LiteralValue::I64(n)));

        let contains = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Contains,
                right: Box::new(r),
            })
        };
        let eq = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Eq,
                right: Box::new(r),
            })
        };
        let or = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Or,
                right: Box::new(r),
            })
        };

        let predicate = or(
            contains(prop("n", "title"), lit_str("x")),
            eq(prop("n", "id"), lit_int(5)),
        );
        assert!(try_rewrite_or_chain_to_union(&conn, "Doc", "n", &predicate).is_none());
    }

    #[test]
    fn rewrite_text_filter_to_fts_handles_or_chain() {
        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};

        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "title").unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "body").unwrap();

        let prop = |alias: &str, p: &str| {
            Expr::synthetic(ExprKind::Property(alias.to_string(), p.to_string()))
        };
        let lit = |s: &str| Expr::synthetic(ExprKind::Literal(LiteralValue::String(s.to_string())));
        let contains = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Contains,
                right: Box::new(r),
            })
        };
        let or = |l: Expr, r: Expr| {
            Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(l),
                op: BinOp::Or,
                right: Box::new(r),
            })
        };

        let mut plan = LogicalOp::Filter {
            input: Box::new(LogicalOp::Scan {
                label: "Doc".to_string(),
                alias: "n".to_string(),
            }),
            predicate: or(
                contains(prop("n", "title"), lit("x")),
                contains(prop("n", "body"), lit("x")),
            ),
        };
        rewrite_text_filter_to_fts(&conn, &mut plan);
        assert!(
            matches!(&plan, LogicalOp::Union { inputs, all: false } if inputs.len() == 2),
            "expected Union(2), got {plan:?}",
        );
    }

    #[test]
    fn rewrite_text_filter_to_fts_single_contains_still_works() {
        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};

        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "title").unwrap();

        let mut plan = LogicalOp::Filter {
            input: Box::new(LogicalOp::Scan {
                label: "Doc".to_string(),
                alias: "n".to_string(),
            }),
            predicate: Expr::synthetic(ExprKind::BinaryOp {
                left: Box::new(Expr::synthetic(ExprKind::Property(
                    "n".to_string(),
                    "title".to_string(),
                ))),
                op: BinOp::Contains,
                right: Box::new(Expr::synthetic(ExprKind::Literal(LiteralValue::String(
                    "x".to_string(),
                )))),
            }),
        };
        rewrite_text_filter_to_fts(&conn, &mut plan);
        assert!(
            matches!(plan, LogicalOp::FullTextLookup { .. }),
            "regression: single CONTAINS must still use AND-chain rewrite"
        );
    }

    // === toLower idiom + CI gating (Task 5) ===

    fn build_tolower_contains(alias: &str, prop: &str, term: &str) -> Expr {
        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};
        Expr::synthetic(ExprKind::BinaryOp {
            left: Box::new(Expr::synthetic(ExprKind::FunctionCall {
                name: "toLower".to_string(),
                args: vec![Expr::synthetic(ExprKind::Property(
                    alias.to_string(),
                    prop.to_string(),
                ))],
                distinct: false,
                original_text: None,
            })),
            op: BinOp::Contains,
            right: Box::new(Expr::synthetic(ExprKind::FunctionCall {
                name: "toLower".to_string(),
                args: vec![Expr::synthetic(ExprKind::Literal(LiteralValue::String(
                    term.to_string(),
                )))],
                distinct: false,
                original_text: None,
            })),
        })
    }

    #[test]
    fn tolower_contains_rewrites_when_ci_index_present() {
        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index_ci(&conn, "Doc", "body").unwrap();

        let mut op = LogicalOp::Filter {
            input: Box::new(LogicalOp::Scan {
                label: "Doc".to_string(),
                alias: "n".to_string(),
            }),
            predicate: build_tolower_contains("n", "body", "Alice"),
        };
        rewrite_text_filter_to_fts(&conn, &mut op);
        assert!(
            matches!(op, LogicalOp::FullTextLookup { .. }),
            "expected FullTextLookup, got {op:?}",
        );
    }

    #[test]
    fn tolower_contains_falls_back_when_only_cs_index() {
        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index(&conn, "Doc", "body").unwrap();

        let mut op = LogicalOp::Filter {
            input: Box::new(LogicalOp::Scan {
                label: "Doc".to_string(),
                alias: "n".to_string(),
            }),
            predicate: build_tolower_contains("n", "body", "Alice"),
        };
        rewrite_text_filter_to_fts(&conn, &mut op);
        assert!(
            matches!(op, LogicalOp::Filter { .. }),
            "CS-only index must not satisfy a needs_ci predicate; got {op:?}",
        );
    }

    #[test]
    fn tolower_contains_falls_back_when_no_index() {
        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();

        let mut op = LogicalOp::Filter {
            input: Box::new(LogicalOp::Scan {
                label: "Doc".to_string(),
                alias: "n".to_string(),
            }),
            predicate: build_tolower_contains("n", "body", "Alice"),
        };
        rewrite_text_filter_to_fts(&conn, &mut op);
        assert!(matches!(op, LogicalOp::Filter { .. }));
    }

    #[test]
    fn asymmetric_tolower_does_not_rewrite_even_with_ci_index() {
        use crate::cypher::ast::{BinOp, Expr, ExprKind, LiteralValue};

        let conn = rusqlite::Connection::open_in_memory().unwrap();
        crate::schema::init_schema(&conn).unwrap();
        crate::fts::create_fulltext_index_ci(&conn, "Doc", "body").unwrap();

        // toLower(n.body) CONTAINS 'Alice'  — RHS not wrapped.
        let predicate = Expr::synthetic(ExprKind::BinaryOp {
            left: Box::new(Expr::synthetic(ExprKind::FunctionCall {
                name: "toLower".to_string(),
                args: vec![Expr::synthetic(ExprKind::Property(
                    "n".to_string(),
                    "body".to_string(),
                ))],
                distinct: false,
                original_text: None,
            })),
            op: BinOp::Contains,
            right: Box::new(Expr::synthetic(ExprKind::Literal(LiteralValue::String(
                "Alice".to_string(),
            )))),
        });
        let mut op = LogicalOp::Filter {
            input: Box::new(LogicalOp::Scan {
                label: "Doc".to_string(),
                alias: "n".to_string(),
            }),
            predicate,
        };
        rewrite_text_filter_to_fts(&conn, &mut op);
        assert!(matches!(op, LogicalOp::Filter { .. }));
    }
}

// === planner split: submodule declarations ===

mod helpers;
mod multi;
mod pattern;
mod statement;
mod validation;

pub use pattern::plan_patterns;

// Sibling fns called from mod.rs's public planners.
use statement::{plan_call, plan_inner};