icydb-core 0.94.0

IcyDB — A schema-first typed query engine and persistence runtime for Internet Computer canisters
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
use super::*;

// Expected ordered-route shape for one range-ordered window shape.
enum RangeOrderedRouteExpectation {
    TopNSeekAccessSatisfied,
    MaterializedSort,
}

// Expected EXPLAIN route properties for one index-range ordered window shape.
struct RangeRouteExpectations<'a> {
    access_name: &'a str,
    ordered_route: RangeOrderedRouteExpectation,
}

// Build the shared bounded range filter once so the individual cases differ
// only on direction and optional offset.
fn deterministic_range_choice_predicate() -> Predicate {
    Predicate::And(vec![
        Predicate::Compare(ComparePredicate::with_coercion(
            "tier",
            CompareOp::Eq,
            Value::Text("gold".to_string()),
            CoercionId::Strict,
        )),
        Predicate::Compare(ComparePredicate::with_coercion(
            "score",
            CompareOp::Gt,
            Value::Uint(10),
            CoercionId::Strict,
        )),
    ])
}

// Build one deterministic range-choice execution descriptor for the requested
// direction and optional offset window.
fn deterministic_range_choice_descriptor(
    session: &DbSession<SessionSqlCanister>,
    descending: bool,
    offset: Option<u32>,
) -> ExplainExecutionNodeDescriptor {
    let mut load = session
        .load::<SessionDeterministicRangeEntity>()
        .filter(deterministic_range_choice_predicate());
    load = if descending {
        load.order_by_desc("score")
            .order_by_desc("label")
            .order_by_desc("id")
    } else {
        load.order_by("score").order_by("label").order_by("id")
    };
    if let Some(offset) = offset {
        load = load.offset(offset);
    }

    load.limit(2)
        .explain_execution()
        .expect("session deterministic range explain_execution should build")
}

// Build one fallback order-only execution descriptor for either the scalar or
// composite route family.
fn order_only_fallback_descriptor(
    session: &DbSession<SessionSqlCanister>,
    composite: bool,
    descending: bool,
    offset: Option<u32>,
) -> ExplainExecutionNodeDescriptor {
    if composite {
        let mut load = session.load::<SessionDeterministicChoiceEntity>();
        load = if descending {
            load.order_by_desc("tier")
                .order_by_desc("handle")
                .order_by_desc("id")
        } else {
            load.order_by("tier").order_by("handle").order_by("id")
        };
        if let Some(offset) = offset {
            load = load.offset(offset);
        }

        return load
            .limit(2)
            .explain_execution()
            .expect("session deterministic composite order-only explain_execution should build");
    }

    let mut load = session.load::<SessionOrderOnlyChoiceEntity>();
    load = if descending {
        load.order_by_desc("alpha").order_by_desc("id")
    } else {
        load.order_by("alpha").order_by("id")
    };
    if let Some(offset) = offset {
        load = load.offset(offset);
    }

    load.limit(2)
        .explain_execution()
        .expect("session deterministic order-only explain_execution should build")
}

// Assert the shared EXPLAIN contract for index-range ordered windows while
// letting each case override only the route properties that differ.
fn assert_range_route_descriptor(
    descriptor: &ExplainExecutionNodeDescriptor,
    expectations: RangeRouteExpectations<'_>,
    context: &str,
) {
    assert_eq!(
        descriptor.node_type(),
        ExplainExecutionNodeType::IndexRangeScan,
        "{context} should stay on the chosen index-range route",
    );
    assert!(
        descriptor.access_strategy().is_some_and(
            |access| matches!(access, ExplainAccessPath::IndexRange { name, .. } if *name == expectations.access_name)
        ),
        "{context} should expose the chosen order-compatible fallback index",
    );
    assert!(
        explain_execution_find_first_node(
            descriptor,
            ExplainExecutionNodeType::SecondaryOrderPushdown
        )
        .is_some(),
        "{context} should expose secondary order pushdown",
    );
    assert!(
        explain_execution_find_first_node(
            descriptor,
            ExplainExecutionNodeType::IndexRangeLimitPushdown
        )
        .is_some(),
        "{context} should derive bounded index-range limit pushdown",
    );
    match expectations.ordered_route {
        RangeOrderedRouteExpectation::TopNSeekAccessSatisfied => {
            assert!(
                explain_execution_find_first_node(descriptor, ExplainExecutionNodeType::TopNSeek)
                    .is_some(),
                "{context} should expose bounded Top-N seek routing",
            );
            assert!(
                explain_execution_find_first_node(
                    descriptor,
                    ExplainExecutionNodeType::OrderByAccessSatisfied
                )
                .is_some(),
                "{context} should keep access-satisfied ordering",
            );
            assert!(
                explain_execution_find_first_node(
                    descriptor,
                    ExplainExecutionNodeType::OrderByMaterializedSort
                )
                .is_none(),
                "{context} should stay off the materialized-sort fallback",
            );
        }
        RangeOrderedRouteExpectation::MaterializedSort => {
            assert!(
                explain_execution_find_first_node(descriptor, ExplainExecutionNodeType::TopNSeek)
                    .is_none(),
                "{context} should stay off the bounded Top-N seek route",
            );
            assert!(
                explain_execution_find_first_node(
                    descriptor,
                    ExplainExecutionNodeType::OrderByAccessSatisfied
                )
                .is_none(),
                "{context} should stay off the access-satisfied ordering route",
            );
            assert!(
                explain_execution_find_first_node(
                    descriptor,
                    ExplainExecutionNodeType::OrderByMaterializedSort
                )
                .is_some(),
                "{context} should expose the materialized-sort fallback",
            );
        }
    }
}

#[test]
fn session_explain_execution_range_choice_matrix_is_stable() {
    reset_indexed_session_sql_store();
    let session = indexed_sql_session();

    // Phase 1: keep the bounded range-choice family under one matrix so the
    // route stays visibly materialized across direction and optional offset.
    let cases = [
        (
            false,
            None,
            RangeRouteExpectations {
                access_name: "z_tier_score_label_idx",
                ordered_route: RangeOrderedRouteExpectation::MaterializedSort,
            },
            "range-choice roots",
        ),
        (
            true,
            None,
            RangeRouteExpectations {
                access_name: "z_tier_score_label_idx",
                ordered_route: RangeOrderedRouteExpectation::MaterializedSort,
            },
            "descending range-choice roots",
        ),
        (
            false,
            Some(1),
            RangeRouteExpectations {
                access_name: "z_tier_score_label_idx",
                ordered_route: RangeOrderedRouteExpectation::MaterializedSort,
            },
            "range-choice offset roots",
        ),
        (
            true,
            Some(1),
            RangeRouteExpectations {
                access_name: "z_tier_score_label_idx",
                ordered_route: RangeOrderedRouteExpectation::MaterializedSort,
            },
            "descending range-choice offset roots",
        ),
    ];

    // Phase 2: reuse the shared assertion across all range-choice variants.
    for (descending, offset, expectations, context) in cases {
        let descriptor = deterministic_range_choice_descriptor(&session, descending, offset);
        assert_range_route_descriptor(&descriptor, expectations, context);
    }
}

#[test]
fn session_execute_order_only_offset_windows_preserve_ordered_rows() {
    reset_indexed_session_sql_store();
    let session = indexed_sql_session();
    seed_order_only_choice_session_entities(
        &session,
        &[
            (9_971, "delta", "alpha"),
            (9_972, "alpha", "echo"),
            (9_973, "bravo", "delta"),
            (9_974, "foxtrot", "golf"),
            (9_975, "charlie", "charlie"),
            (9_976, "hotel", "india"),
        ],
    );

    let asc = session
        .load::<SessionOrderOnlyChoiceEntity>()
        .order_by("alpha")
        .order_by("id")
        .offset(1)
        .limit(2)
        .execute()
        .and_then(crate::db::LoadQueryResult::into_rows)
        .expect("ascending order-only offset window should execute");
    let asc_alpha = asc
        .iter()
        .map(|row| row.entity_ref().alpha.as_str())
        .collect::<Vec<_>>();
    let asc_paged = session
        .load::<SessionOrderOnlyChoiceEntity>()
        .order_by("alpha")
        .order_by("id")
        .offset(1)
        .limit(2)
        .execute_paged()
        .expect("ascending order-only offset paged window should execute");
    let asc_paged_alpha = asc_paged
        .iter()
        .map(|row| row.entity_ref().alpha.as_str())
        .collect::<Vec<_>>();

    let desc = session
        .load::<SessionOrderOnlyChoiceEntity>()
        .order_by_desc("alpha")
        .order_by_desc("id")
        .offset(1)
        .limit(2)
        .execute()
        .and_then(crate::db::LoadQueryResult::into_rows)
        .expect("descending order-only offset window should execute");
    let desc_alpha = desc
        .iter()
        .map(|row| row.entity_ref().alpha.as_str())
        .collect::<Vec<_>>();

    assert_eq!(
        asc_paged_alpha,
        vec!["bravo", "charlie"],
        "order-only paged windows should preserve the same shifted fallback index order",
    );
    assert_eq!(
        asc_alpha,
        vec!["bravo", "charlie"],
        "ascending order-only offset windows should preserve the shifted fallback index order",
    );
    assert_eq!(
        desc_alpha,
        vec!["foxtrot", "delta"],
        "descending order-only offset windows should preserve the reversed shifted fallback index order",
    );
}

#[test]
fn session_explain_execution_order_only_choice_matrix_is_stable() {
    reset_indexed_session_sql_store();
    let session = indexed_sql_session();

    // Phase 1: keep the scalar and composite fallback families explicit while
    // removing the repetitive one-wrapper-per-variant shape.
    let cases = [
        (
            false,
            false,
            Some(1),
            RangeRouteExpectations {
                access_name: "z_alpha_idx",
                ordered_route: RangeOrderedRouteExpectation::TopNSeekAccessSatisfied,
            },
            "order-only offset roots",
        ),
        (
            false,
            true,
            Some(1),
            RangeRouteExpectations {
                access_name: "z_alpha_idx",
                ordered_route: RangeOrderedRouteExpectation::TopNSeekAccessSatisfied,
            },
            "descending order-only offset roots",
        ),
        (
            true,
            false,
            None,
            RangeRouteExpectations {
                access_name: "z_tier_handle_idx",
                ordered_route: RangeOrderedRouteExpectation::TopNSeekAccessSatisfied,
            },
            "composite order-only roots",
        ),
        (
            true,
            true,
            None,
            RangeRouteExpectations {
                access_name: "z_tier_handle_idx",
                ordered_route: RangeOrderedRouteExpectation::TopNSeekAccessSatisfied,
            },
            "descending composite order-only roots",
        ),
        (
            true,
            false,
            Some(1),
            RangeRouteExpectations {
                access_name: "z_tier_handle_idx",
                ordered_route: RangeOrderedRouteExpectation::TopNSeekAccessSatisfied,
            },
            "composite order-only offset roots",
        ),
        (
            true,
            true,
            Some(1),
            RangeRouteExpectations {
                access_name: "z_tier_handle_idx",
                ordered_route: RangeOrderedRouteExpectation::TopNSeekAccessSatisfied,
            },
            "descending composite order-only offset roots",
        ),
    ];

    // Phase 2: reuse the shared assertion across every fallback variant.
    for (composite, descending, offset, expectations, context) in cases {
        let descriptor = order_only_fallback_descriptor(&session, composite, descending, offset);
        assert_range_route_descriptor(&descriptor, expectations, context);
    }
}

#[test]
fn session_execute_composite_order_only_offset_windows_preserve_ordered_rows() {
    reset_indexed_session_sql_store();
    let session = indexed_sql_session();

    // Phase 1: seed one minimal composite order-only dataset so the offset
    // window must skip the first ordered row instead of merely truncating.
    for (id, tier, handle, label) in [
        (9_981_u128, "gold", "bravo", "amber"),
        (9_982_u128, "gold", "charlie", "bravo"),
        (9_983_u128, "silver", "delta", "delta"),
    ] {
        session
            .insert(SessionDeterministicChoiceEntity {
                id: Ulid::from_u128(id),
                tier: tier.to_string(),
                handle: handle.to_string(),
                label: label.to_string(),
            })
            .expect("composite order-only offset seed insert should succeed");
    }

    // Phase 2: assert the compiled query still carries the logical offset so
    // the runtime check isolates window application, not planning.
    let planned = session
        .load::<SessionDeterministicChoiceEntity>()
        .order_by("tier")
        .order_by("handle")
        .order_by("id")
        .offset(1)
        .limit(2)
        .planned()
        .expect("composite order-only offset plan should build");
    assert_eq!(
        planned.explain().page(),
        &crate::db::query::explain::ExplainPagination::Page {
            limit: Some(2),
            offset: 1,
        },
        "composite order-only offset plans must preserve the logical offset at the planner boundary",
    );

    // Phase 3: execute the public entity surface and lock the shifted ordered
    // window directly.
    let response = session
        .load::<SessionDeterministicChoiceEntity>()
        .order_by("tier")
        .order_by("handle")
        .order_by("id")
        .offset(1)
        .limit(2)
        .execute()
        .and_then(crate::db::LoadQueryResult::into_rows)
        .expect("composite order-only offset window should execute");
    let handles = response
        .iter()
        .map(|row| row.entity_ref().handle.as_str())
        .collect::<Vec<_>>();
    let paged = session
        .load::<SessionDeterministicChoiceEntity>()
        .order_by("tier")
        .order_by("handle")
        .order_by("id")
        .offset(1)
        .limit(2)
        .execute_paged()
        .expect("composite order-only offset paged window should execute");
    let paged_handles = paged
        .iter()
        .map(|row| row.entity_ref().handle.as_str())
        .collect::<Vec<_>>();

    assert_eq!(
        paged_handles,
        vec!["charlie", "delta"],
        "composite order-only paged windows should preserve the same shifted index order",
    );
    assert_eq!(
        handles,
        vec!["charlie", "delta"],
        "composite order-only offset windows should preserve the shifted index order on the public entity surface",
    );
}