risingwave_storage/
lib.rs

1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15#![feature(allocator_api)]
16#![feature(bound_as_ref)]
17#![feature(custom_test_frameworks)]
18#![feature(coroutines)]
19#![feature(proc_macro_hygiene)]
20#![feature(stmt_expr_attributes)]
21#![feature(test)]
22#![feature(trait_alias)]
23#![feature(type_alias_impl_trait)]
24#![feature(type_changing_struct_update)]
25#![test_runner(risingwave_test_runner::test_runner::run_failpont_tests)]
26#![feature(assert_matches)]
27#![feature(exact_size_is_empty)]
28#![feature(coverage_attribute)]
29#![recursion_limit = "256"]
30#![feature(error_generic_member_access)]
31#![feature(impl_trait_in_assoc_type)]
32#![feature(maybe_uninit_array_assume_init)]
33#![feature(iter_from_coroutine)]
34#![feature(get_mut_unchecked)]
35#![feature(portable_simd)]
36#![feature(map_try_insert)]
37#![feature(never_type)]
38
39pub mod hummock;
40pub mod memory;
41pub mod monitor;
42pub mod panic_store;
43pub mod row_serde;
44pub mod storage_value;
45#[macro_use]
46pub mod store;
47pub mod error;
48pub mod opts;
49pub mod store_impl;
50pub mod table;
51
52pub mod compaction_catalog_manager;
53pub mod mem_table;
54#[cfg(test)]
55#[cfg(feature = "failpoints")]
56mod storage_failpoints;
57pub mod vector;
58
59pub use store::{StateStore, StateStoreIter, StateStoreReadIter};
60pub use store_impl::StateStoreImpl;