From 76838bb46a58ef4fc5ece6c705ce7420dfbc798b Mon Sep 17 00:00:00 2001 From: Lucas Forato Date: Mon, 11 Aug 2025 08:54:42 -0300 Subject: [PATCH] fix: issues from rebase --- core/lib.rs | 2 +- core/vtab.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/lib.rs b/core/lib.rs index ce88f79d8..87f1dfcd4 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -40,7 +40,7 @@ pub mod numeric; #[cfg(not(feature = "fuzz"))] mod numeric; -use crate::incremental::view::ViewTransactionState; +use crate::{incremental::view::ViewTransactionState, schema::Table}; use crate::translate::optimizer::optimize_plan; use crate::translate::pragma::TURSO_CDC_DEFAULT_TABLE_NAME; #[cfg(all(feature = "fs", feature = "conn_raw_api"))] diff --git a/core/vtab.rs b/core/vtab.rs index 9e1a7e3a0..797fa6f8a 100644 --- a/core/vtab.rs +++ b/core/vtab.rs @@ -105,6 +105,7 @@ impl VirtualTable { let vtab = VirtualTable { name: view_name.to_owned(), columns, + module_name: Some(view_name.to_string()), kind: VTabKind::VirtualTable, vtab_type: VirtualTableType::View(crate::vtab_view::ViewVirtualTable { view }), };