Encryption support for database header page

This commit is contained in:
rajajisai
2025-09-11 16:17:01 -04:00
parent bc4aa63203
commit 89caa868f9
11 changed files with 205 additions and 118 deletions

View File

@@ -183,6 +183,7 @@ impl Limbo {
.with_indexes(indexes_enabled)
.with_views(opts.experimental_views)
.with_strict(opts.experimental_strict),
None,
)?;
let conn = db.connect()?;
(io, conn)

View File

@@ -418,6 +418,7 @@ impl TursoMcpServer {
None::<&str>,
OpenFlags::default(),
DatabaseOpts::new().with_indexes(true),
None,
) {
Ok((_io, db)) => match db.connect() {
Ok(c) => c,