Finish integrating xConnect into vtable open api

This commit is contained in:
PThorpe92 2025-05-23 23:18:09 -04:00
parent cbd7245677
commit c2ec6caae1
No known key found for this signature in database
GPG key ID: 66DB3FBACBDD05CC
4 changed files with 18 additions and 6 deletions

View file

@ -1,5 +1,6 @@
#[cfg(feature = "fs")]
mod dynamic;
mod vtab_xconnect;
#[cfg(all(target_os = "linux", feature = "io_uring"))]
use crate::UringIO;
use crate::{function::ExternalFunc, Connection, Database, LimboError, IO};
@ -14,6 +15,7 @@ use std::{
rc::Rc,
sync::Arc,
};
pub use vtab_xconnect::{close, prepare_stmt};
type ExternAggFunc = (InitAggFunction, StepFunction, FinalizeFunction);
#[derive(Clone)]