From 0c54c2b255dae5663c8ff6548dc654cbd16d0af4 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Mon, 22 Sep 2025 09:42:50 -0400 Subject: [PATCH] Add `turos_cli` option to CLI DatabaseOpts --- cli/app.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/app.rs b/cli/app.rs index ee432f55d..7b65a2a9c 100644 --- a/cli/app.rs +++ b/cli/app.rs @@ -184,7 +184,8 @@ impl Limbo { .with_mvcc(opts.experimental_mvcc) .with_indexes(indexes_enabled) .with_views(opts.experimental_views) - .with_strict(opts.experimental_strict), + .with_strict(opts.experimental_strict) + .turso_cli(), None, )?; let conn = db.connect()?;