1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use {
    super::SharedMemoryStorage,
    async_trait::async_trait,
    gluesql_core::{
        error::{Error, Result},
        store::Transaction,
    },
};

#[async_trait(?Send)]
impl Transaction for SharedMemoryStorage {
    async fn begin(&mut self, autocommit: bool) -> Result<bool> {
        if autocommit {
            return Ok(false);
        }

        Err(Error::StorageMsg(
            "[Shared MemoryStorage] transaction is not supported".to_owned(),
        ))
    }

    async fn rollback(&mut self) -> Result<()> {
        Err(Error::StorageMsg(
            "[Shared MemoryStorage] transaction is not supported".to_owned(),
        ))
    }

    async fn commit(&mut self) -> Result<()> {
        Err(Error::StorageMsg(
            "[Shared MemoryStorage] transaction is not supported".to_owned(),
        ))
    }
}