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(btree_extract_if)]
28#![feature(exact_size_is_empty)]
29#![cfg_attr(coverage, feature(coverage_attribute))]
30#![recursion_limit = "256"]
31#![feature(error_generic_member_access)]
32#![feature(let_chains)]
33#![feature(impl_trait_in_assoc_type)]
34#![feature(maybe_uninit_array_assume_init)]
35#![feature(iter_from_coroutine)]
36
37pub mod hummock;
38pub mod memory;
39pub mod monitor;
40pub mod panic_store;
41pub mod row_serde;
42pub mod storage_value;
43#[macro_use]
44pub mod store;
45pub mod error;
46pub mod opts;
47pub mod store_impl;
48pub mod table;
49
50pub mod compaction_catalog_manager;
51pub mod mem_table;
52#[cfg(test)]
53#[cfg(feature = "failpoints")]
54mod storage_failpoints;
55
56pub use store::{StateStore, StateStoreIter, StateStoreReadIter};
57pub use store_impl::StateStoreImpl;