embedded_tsdb/
lib.rs

1pub fn exec(sql: String) -> Result<(), TsdbError> {
2    // tracing::info!("Exec sql: {}", &sql);
3    Err(TsdbError::NotImplError)
4}
5
6#[derive(thiserror::Error, Debug)]
7pub enum TsdbError {
8    #[error("Not implement yet!")]
9    NotImplError,
10}