feat(flow): frontend client for handle sql (#5761)

* feat: frontend client for handle sql

* refactor: per review

* chore: revert unnecessary change
This commit is contained in:
discord9
2025-03-25 10:26:04 +08:00
committed by GitHub
parent 278553fc3f
commit 3b547d9d13
4 changed files with 172 additions and 2 deletions

View File

@@ -16,7 +16,6 @@
mod client;
pub mod client_manager;
#[cfg(feature = "testing")]
mod database;
pub mod error;
pub mod flow;
@@ -34,7 +33,6 @@ pub use common_recordbatch::{RecordBatches, SendableRecordBatchStream};
use snafu::OptionExt;
pub use self::client::Client;
#[cfg(feature = "testing")]
pub use self::database::Database;
pub use self::error::{Error, Result};
use crate::error::{IllegalDatabaseResponseSnafu, ServerSnafu};