nautilus-orm-connector 1.2.0

Database executors and connection management for Nautilus ORM
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
//! Integration tests for SQLite executor.
//!
//! These tests use an in-memory SQLite database — no external server required.

use futures::stream::StreamExt;
use nautilus_connector::{
    execute_all, normalize_rows_with_hints, Executor, SqliteExecutor, ValueHint,
};
use nautilus_core::{BinaryOp, Expr, OrderDir, Select, Value};
use nautilus_dialect::{Dialect, Sql, SqliteDialect};
use serde_json::json;

async fn setup_executor() -> nautilus_connector::ConnectorResult<SqliteExecutor> {
    SqliteExecutor::new("sqlite::memory:").await
}

async fn setup_test_table(executor: &SqliteExecutor) -> nautilus_connector::ConnectorResult<()> {
    let create_table = Sql {
        text: r#"
            CREATE TABLE IF NOT EXISTS test_users (
                id INTEGER PRIMARY KEY,
                name TEXT NOT NULL,
                email TEXT,
                age INTEGER,
                score REAL,
                active BOOLEAN,
                data BLOB
            )
        "#
        .to_string(),
        params: vec![],
    };
    execute_all(executor, &create_table).await?;
    Ok(())
}

async fn setup_array_table(executor: &SqliteExecutor) -> nautilus_connector::ConnectorResult<()> {
    let create_table = Sql {
        text: r#"
            CREATE TABLE IF NOT EXISTS test_array_rows (
                id INTEGER PRIMARY KEY,
                tags TEXT NOT NULL
            )
        "#
        .to_string(),
        params: vec![],
    };
    execute_all(executor, &create_table).await?;
    Ok(())
}

#[tokio::test]
async fn test_sqlite_executor_connection() {
    let executor = setup_executor().await;
    assert!(
        executor.is_ok(),
        "Failed to connect to SQLite: {:?}",
        executor.err()
    );
}

#[tokio::test]
async fn test_execute_query_no_results() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let sql = Sql {
        text: "SELECT * FROM test_users WHERE id = ?".to_string(),
        params: vec![Value::I64(999)],
    };

    let rows = execute_all(&executor, &sql)
        .await
        .expect("Failed to execute query");
    assert_eq!(rows.len(), 0, "Expected no rows");
}

#[tokio::test]
async fn test_insert_and_select() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text: "INSERT INTO test_users (id, name, email, age, score, active, data) VALUES (?, ?, ?, ?, ?, ?, ?)".to_string(),
        params: vec![
            Value::I64(1),
            Value::String("Alice".to_string()),
            Value::String("alice@example.com".to_string()),
            Value::I64(30),
            Value::F64(95.5),
            Value::Bool(true),
            Value::Bytes(vec![1, 2, 3]),
        ],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert");

    let select = Sql {
        text: "SELECT id, name, email, age, score, active, data FROM test_users WHERE id = ?"
            .to_string(),
        params: vec![Value::I64(1)],
    };

    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select");
    assert_eq!(rows.len(), 1, "Expected 1 row");

    let row = &rows[0];
    assert_eq!(row.get("id"), Some(&Value::I64(1)));
    assert_eq!(row.get("name"), Some(&Value::String("Alice".to_string())));
    assert_eq!(
        row.get("email"),
        Some(&Value::String("alice@example.com".to_string()))
    );
    assert_eq!(row.get("age"), Some(&Value::I64(30)));
    assert_eq!(row.get("score"), Some(&Value::F64(95.5)));
    assert_eq!(row.get("active"), Some(&Value::Bool(true)));
    assert_eq!(row.get("data"), Some(&Value::Bytes(vec![1, 2, 3])));
}

#[tokio::test]
async fn test_row_positional_access() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text: "INSERT INTO test_users (id, name, age, score, active) VALUES (?, ?, ?, ?, ?)"
            .to_string(),
        params: vec![
            Value::I64(2),
            Value::String("Bob".to_string()),
            Value::I64(25),
            Value::F64(88.0),
            Value::Bool(false),
        ],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert");

    let select = Sql {
        text: "SELECT id, name, email FROM test_users WHERE id = ?".to_string(),
        params: vec![Value::I64(2)],
    };

    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select");
    assert_eq!(rows.len(), 1);

    let row = &rows[0];
    assert_eq!(row.get_by_pos(0), Some(&Value::I64(2)));
    assert_eq!(row.get_by_pos(1), Some(&Value::String("Bob".to_string())));
    assert_eq!(row.get_by_pos(2), Some(&Value::Null));
    assert_eq!(row.get_by_pos(3), None);
}

#[tokio::test]
async fn test_row_iterator() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text: "INSERT INTO test_users (id, name, email, age, score, active, data) VALUES (?, ?, ?, ?, ?, ?, ?)".to_string(),
        params: vec![
            Value::I64(3),
            Value::String("Charlie".to_string()),
            Value::String("charlie@example.com".to_string()),
            Value::I64(35),
            Value::F64(92.0),
            Value::Bool(true),
            Value::Bytes(vec![]),
        ],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert");

    let select = Sql {
        text: "SELECT id, name FROM test_users WHERE id = ?".to_string(),
        params: vec![Value::I64(3)],
    };

    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select");
    let row = &rows[0];

    let columns: Vec<_> = row.iter().collect();
    assert_eq!(columns.len(), 2);
    assert_eq!(columns[0].0, "id");
    assert_eq!(columns[0].1, &Value::I64(3));
    assert_eq!(columns[1].0, "name");
    assert_eq!(columns[1].1, &Value::String("Charlie".to_string()));
}

#[tokio::test]
async fn test_null_values() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text: "INSERT INTO test_users (id, name) VALUES (?, ?)".to_string(),
        params: vec![Value::I64(4), Value::String("David".to_string())],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert");

    let select = Sql {
        text: "SELECT id, name, email, age, score, active, data FROM test_users WHERE id = ?"
            .to_string(),
        params: vec![Value::I64(4)],
    };

    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select");
    let row = &rows[0];

    assert_eq!(row.get("id"), Some(&Value::I64(4)));
    assert_eq!(row.get("name"), Some(&Value::String("David".to_string())));
    assert_eq!(row.get("email"), Some(&Value::Null));
    assert_eq!(row.get("age"), Some(&Value::Null));
    assert_eq!(row.get("score"), Some(&Value::Null));
    assert_eq!(row.get("active"), Some(&Value::Null));
    assert_eq!(row.get("data"), Some(&Value::Null));
}

#[tokio::test]
async fn test_sqlite_array_operators_preserve_json_nulls() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_array_table(&executor)
        .await
        .expect("Failed to setup array table");

    for (id, tags) in [
        (
            1i64,
            Value::Array(vec![Value::String("rust".to_string()), Value::Null]),
        ),
        (2i64, Value::Array(vec![Value::String("rust".to_string())])),
        (3i64, Value::Array(vec![Value::Null])),
        (4i64, Value::Array(vec![Value::String("go".to_string())])),
    ] {
        let insert = Sql {
            text: "INSERT INTO test_array_rows (id, tags) VALUES (?, ?)".to_string(),
            params: vec![Value::I64(id), tags],
        };
        execute_all(&executor, &insert)
            .await
            .expect("Failed to insert array row");
    }

    let dialect = SqliteDialect;

    let contains_null = Select::from_table("test_array_rows")
        .filter(Expr::Binary {
            left: Box::new(Expr::column("test_array_rows__tags")),
            op: BinaryOp::ArrayContains,
            right: Box::new(Expr::param(Value::Array(vec![Value::Null]))),
        })
        .order_by("id", OrderDir::Asc)
        .build()
        .unwrap();
    let contains_sql = dialect.render_select(&contains_null).unwrap();
    let contains_rows = execute_all(&executor, &contains_sql)
        .await
        .expect("Failed to execute contains-null query");
    let contains_ids: Vec<i64> = contains_rows
        .iter()
        .map(|row| match row.get("id") {
            Some(Value::I64(id)) => *id,
            other => panic!("unexpected id row: {other:?}"),
        })
        .collect();
    assert_eq!(contains_ids, vec![1, 3]);

    let contained_by_null = Select::from_table("test_array_rows")
        .filter(Expr::Binary {
            left: Box::new(Expr::column("test_array_rows__tags")),
            op: BinaryOp::ArrayContainedBy,
            right: Box::new(Expr::param(Value::Array(vec![Value::Null]))),
        })
        .order_by("id", OrderDir::Asc)
        .build()
        .unwrap();
    let contained_by_sql = dialect.render_select(&contained_by_null).unwrap();
    let contained_by_rows = execute_all(&executor, &contained_by_sql)
        .await
        .expect("Failed to execute contained-by-null query");
    let contained_by_ids: Vec<i64> = contained_by_rows
        .iter()
        .map(|row| match row.get("id") {
            Some(Value::I64(id)) => *id,
            other => panic!("unexpected id row: {other:?}"),
        })
        .collect();
    assert_eq!(contained_by_ids, vec![3]);

    let overlaps_null = Select::from_table("test_array_rows")
        .filter(Expr::Binary {
            left: Box::new(Expr::column("test_array_rows__tags")),
            op: BinaryOp::ArrayOverlaps,
            right: Box::new(Expr::param(Value::Array(vec![Value::Null]))),
        })
        .order_by("id", OrderDir::Asc)
        .build()
        .unwrap();
    let overlaps_sql = dialect.render_select(&overlaps_null).unwrap();
    let overlaps_rows = execute_all(&executor, &overlaps_sql)
        .await
        .expect("Failed to execute overlaps-null query");
    let overlaps_ids: Vec<i64> = overlaps_rows
        .iter()
        .map(|row| match row.get("id") {
            Some(Value::I64(id)) => *id,
            other => panic!("unexpected id row: {other:?}"),
        })
        .collect();
    assert_eq!(overlaps_ids, vec![1, 3]);
}

#[tokio::test]
async fn test_multiple_rows() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    for i in 10..15i64 {
        let insert = Sql {
            text: "INSERT INTO test_users (id, name, email, age, score, active) VALUES (?, ?, ?, ?, ?, ?)".to_string(),
            params: vec![
                Value::I64(i),
                Value::String(format!("User{}", i)),
                Value::String(format!("user{}@example.com", i)),
                Value::I64(20 + i),
                Value::F64(80.0 + i as f64),
                Value::Bool(i % 2 == 0),
            ],
        };
        execute_all(&executor, &insert)
            .await
            .expect("Failed to insert");
    }

    let select = Sql {
        text: "SELECT id, name FROM test_users WHERE id >= ? ORDER BY id".to_string(),
        params: vec![Value::I64(10)],
    };

    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select");
    assert_eq!(rows.len(), 5);

    for (i, row) in rows.iter().enumerate() {
        let expected_id = 10 + i as i64;
        assert_eq!(row.get("id"), Some(&Value::I64(expected_id)));
        assert_eq!(
            row.get("name"),
            Some(&Value::String(format!("User{}", expected_id)))
        );
    }
}

#[tokio::test]
async fn test_streaming_execution() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    for i in 20..25i64 {
        let insert = Sql {
            text: "INSERT INTO test_users (id, name, email, age, score, active) VALUES (?, ?, ?, ?, ?, ?)".to_string(),
            params: vec![
                Value::I64(i),
                Value::String(format!("StreamUser{}", i)),
                Value::String(format!("stream{}@example.com", i)),
                Value::I64(20 + i),
                Value::F64(80.0 + i as f64),
                Value::Bool(true),
            ],
        };
        execute_all(&executor, &insert)
            .await
            .expect("Failed to insert");
    }

    let select = Sql {
        text: "SELECT id, name FROM test_users WHERE id >= ? ORDER BY id".to_string(),
        params: vec![Value::I64(20)],
    };

    let mut stream = executor.execute(&select);
    let mut count = 0;
    let mut collected_ids = Vec::new();

    while let Some(result) = stream.next().await {
        let row = result.expect("Failed to get row from stream");
        let id = match row.get("id") {
            Some(Value::I64(i)) => *i,
            _ => panic!("Expected I64 id"),
        };
        collected_ids.push(id);
        count += 1;
    }

    assert_eq!(count, 5, "Expected 5 rows from stream");
    assert_eq!(collected_ids, vec![20, 21, 22, 23, 24]);
}

#[tokio::test]
async fn test_duplicate_column_names() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text:
            "INSERT INTO test_users (id, name, email, age, score, active) VALUES (?, ?, ?, ?, ?, ?)"
                .to_string(),
        params: vec![
            Value::I64(5),
            Value::String("Eve".to_string()),
            Value::String("eve@example.com".to_string()),
            Value::I64(28),
            Value::F64(90.0),
            Value::Bool(true),
        ],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert");

    let select = Sql {
        text: "SELECT id, name, id FROM test_users WHERE id = ?".to_string(),
        params: vec![Value::I64(5)],
    };

    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select");
    let row = &rows[0];

    assert_eq!(row.get("id"), Some(&Value::I64(5)));
    assert_eq!(row.len(), 3);

    assert_eq!(row.get_by_pos(0), Some(&Value::I64(5)));
    assert_eq!(row.get_by_pos(1), Some(&Value::String("Eve".to_string())));
    assert_eq!(row.get_by_pos(2), Some(&Value::I64(5)));
}

#[tokio::test]
async fn test_returning_clause() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text: "INSERT INTO test_users (id, name, email) VALUES (?, ?, ?) RETURNING id, name, email"
            .to_string(),
        params: vec![
            Value::I64(100),
            Value::String("Returning".to_string()),
            Value::String("ret@example.com".to_string()),
        ],
    };

    let rows = execute_all(&executor, &insert)
        .await
        .expect("Failed to insert with RETURNING");
    assert_eq!(rows.len(), 1);
    let row = &rows[0];
    assert_eq!(row.get("id"), Some(&Value::I64(100)));
    assert_eq!(
        row.get("name"),
        Some(&Value::String("Returning".to_string()))
    );
    assert_eq!(
        row.get("email"),
        Some(&Value::String("ret@example.com".to_string()))
    );
}

#[tokio::test]
async fn test_update_returning() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text: "INSERT INTO test_users (id, name, email) VALUES (?, ?, ?)".to_string(),
        params: vec![
            Value::I64(101),
            Value::String("Before".to_string()),
            Value::String("before@example.com".to_string()),
        ],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert");

    let update = Sql {
        text: "UPDATE test_users SET name = ?, email = ? WHERE id = ? RETURNING id, name, email"
            .to_string(),
        params: vec![
            Value::String("After".to_string()),
            Value::String("after@example.com".to_string()),
            Value::I64(101),
        ],
    };

    let rows = execute_all(&executor, &update)
        .await
        .expect("Failed to update with RETURNING");
    assert_eq!(rows.len(), 1);
    let row = &rows[0];
    assert_eq!(row.get("id"), Some(&Value::I64(101)));
    assert_eq!(row.get("name"), Some(&Value::String("After".to_string())));
    assert_eq!(
        row.get("email"),
        Some(&Value::String("after@example.com".to_string()))
    );
}

#[tokio::test]
async fn test_delete_returning() {
    let executor = setup_executor().await.expect("Failed to create executor");
    setup_test_table(&executor)
        .await
        .expect("Failed to setup table");

    let insert = Sql {
        text: "INSERT INTO test_users (id, name, email) VALUES (?, ?, ?)".to_string(),
        params: vec![
            Value::I64(102),
            Value::String("ToDelete".to_string()),
            Value::String("delete@example.com".to_string()),
        ],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert");

    let delete = Sql {
        text: "DELETE FROM test_users WHERE id = ? RETURNING id, name, email".to_string(),
        params: vec![Value::I64(102)],
    };

    let rows = execute_all(&executor, &delete)
        .await
        .expect("Failed to delete with RETURNING");
    assert_eq!(rows.len(), 1);
    let row = &rows[0];
    assert_eq!(row.get("id"), Some(&Value::I64(102)));
    assert_eq!(
        row.get("name"),
        Some(&Value::String("ToDelete".to_string()))
    );
    assert_eq!(
        row.get("email"),
        Some(&Value::String("delete@example.com".to_string()))
    );

    let select = Sql {
        text: "SELECT * FROM test_users WHERE id = ?".to_string(),
        params: vec![Value::I64(102)],
    };
    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select");
    assert_eq!(rows.len(), 0);
}

#[tokio::test]
async fn test_client_sqlite_constructor() {
    use nautilus_connector::Client;

    let client = Client::sqlite("sqlite::memory:").await;
    assert!(
        client.is_ok(),
        "Failed to create SQLite client: {:?}",
        client.err()
    );
}

#[tokio::test]
async fn test_datetime_decoding() {
    use chrono::NaiveDate;

    let executor = setup_executor().await.expect("Failed to create executor");
    let create_table = Sql {
        text: r#"
            CREATE TABLE IF NOT EXISTS typed_values (
                id INTEGER PRIMARY KEY,
                created_at DATETIME NOT NULL
            )
        "#
        .to_string(),
        params: vec![],
    };
    execute_all(&executor, &create_table)
        .await
        .expect("Failed to create typed_values table");

    let expected_dt = NaiveDate::from_ymd_opt(2026, 3, 30)
        .unwrap()
        .and_hms_opt(12, 34, 56)
        .unwrap();

    let insert = Sql {
        text: "INSERT INTO typed_values (id, created_at) VALUES (?, ?)".to_string(),
        params: vec![Value::I64(1), Value::DateTime(expected_dt)],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert datetime row");

    let select = Sql {
        text: "SELECT created_at FROM typed_values WHERE id = ?".to_string(),
        params: vec![Value::I64(1)],
    };
    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select datetime row");

    assert_eq!(rows.len(), 1);
    assert_eq!(
        rows[0].get("created_at"),
        Some(&Value::DateTime(expected_dt))
    );
}

#[tokio::test]
async fn test_decimal_and_json_columns_survive_sqlite_null_type_fallback() {
    let executor = setup_executor().await.expect("Failed to create executor");
    let create_table = Sql {
        text: r#"
            CREATE TABLE IF NOT EXISTS typed_values (
                id INTEGER PRIMARY KEY,
                amount DECIMAL(10, 2) NOT NULL,
                metadata JSON NOT NULL
            )
        "#
        .to_string(),
        params: vec![],
    };
    execute_all(&executor, &create_table)
        .await
        .expect("Failed to create typed_values table");

    let insert = Sql {
        text: "INSERT INTO typed_values (id, amount, metadata) VALUES (?, ?, ?)".to_string(),
        params: vec![
            Value::I64(1),
            Value::String("19.95".to_string()),
            Value::String(r#"{"source":"sqlite","retries":0}"#.to_string()),
        ],
    };
    execute_all(&executor, &insert)
        .await
        .expect("Failed to insert typed row");

    let select = Sql {
        text: "SELECT amount, metadata FROM typed_values WHERE id = ?".to_string(),
        params: vec![Value::I64(1)],
    };
    let rows = execute_all(&executor, &select)
        .await
        .expect("Failed to select typed row");

    assert_eq!(rows.len(), 1);
    assert!(
        !matches!(rows[0].get("amount"), Some(Value::Null) | None),
        "raw SQLite decode should not drop DECIMAL values: {:?}",
        rows[0]
    );
    assert!(
        !matches!(rows[0].get("metadata"), Some(Value::Null) | None),
        "raw SQLite decode should not drop JSON values: {:?}",
        rows[0]
    );

    let normalized =
        normalize_rows_with_hints(rows, &[Some(ValueHint::Decimal), Some(ValueHint::Json)])
            .expect("Failed to normalize typed row");

    assert_eq!(
        normalized[0].get("amount"),
        Some(&Value::Decimal(rust_decimal::Decimal::new(1995, 2)))
    );
    assert_eq!(
        normalized[0].get("metadata"),
        Some(&Value::Json(json!({"source":"sqlite","retries":0})))
    );
}