pub trait ReadOnlySqlAdapter: Send + Sync {
// Required method
fn execute_read_only(
&self,
project_id: &str,
scope_id: &str,
sql: &str,
) -> Result<(Query, QueryOptions), QueryError>;
}pub trait ReadOnlySqlAdapter: Send + Sync {
// Required method
fn execute_read_only(
&self,
project_id: &str,
scope_id: &str,
sql: &str,
) -> Result<(Query, QueryOptions), QueryError>;
}