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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
use {
super::MemoryStorage,
async_trait::async_trait,
gluesql_core::{
ast::{IndexOperator, OrderByExpr},
data::Value,
result::{Error, MutResult, Result},
store::{Index, IndexMut, RowIter},
},
};
#[async_trait(?Send)]
impl Index for MemoryStorage {
async fn scan_indexed_data(
&self,
_table_name: &str,
_index_name: &str,
_asc: Option<bool>,
_cmp_value: Option<(&IndexOperator, Value)>,
) -> Result<RowIter> {
Err(Error::StorageMsg(
"[MemoryStorage] index is not supported".to_owned(),
))
}
}
#[async_trait(?Send)]
impl IndexMut for MemoryStorage {
async fn create_index(
self,
_table_name: &str,
_index_name: &str,
_column: &OrderByExpr,
) -> MutResult<Self, ()> {
Err((
self,
Error::StorageMsg("[MemoryStorage] index is not supported".to_owned()),
))
}
async fn drop_index(self, _table_name: &str, _index_name: &str) -> MutResult<Self, ()> {
Err((
self,
Error::StorageMsg("[MemoryStorage] index is not supported".to_owned()),
))
}
}