risingwave_batch_executors/
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//! Batch executor implementations.
16//!
17//! To enable executors in this crate, add the following line to your code:
18//!
19//! ```
20//! risingwave_batch_executors::enable!();
21//! ```
22
23#![allow(clippy::derive_partial_eq_without_eq)]
24#![feature(trait_alias)]
25#![feature(exact_size_is_empty)]
26#![feature(type_alias_impl_trait)]
27#![cfg_attr(coverage, feature(coverage_attribute))]
28#![feature(coroutines)]
29#![feature(proc_macro_hygiene, stmt_expr_attributes)]
30#![feature(iterator_try_collect)]
31#![recursion_limit = "256"]
32#![feature(let_chains)]
33#![feature(int_roundings)]
34#![feature(allocator_api)]
35#![feature(impl_trait_in_assoc_type)]
36#![feature(assert_matches)]
37#![feature(error_generic_member_access)]
38#![feature(map_try_insert)]
39#![feature(iter_from_coroutine)]
40#![feature(used_with_arg)]
41
42pub mod executor;
43pub use executor::*;
44pub use risingwave_batch::{error, exchange_source, execution, monitor, spill, task};
45
46#[macro_use]
47extern crate tracing;
48#[macro_use]
49extern crate risingwave_common;
50
51#[cfg(test)]
52risingwave_expr_impl::enable!();
53
54/// Enable executors in this crate.
55#[macro_export]
56macro_rules! enable {
57    () => {
58        use risingwave_batch_executors as _;
59    };
60}