Skip to main content

rudb_opt/
lib.rs

1//! The rewrite passes, cardinality estimation, join ordering, predicate transfer and layout adaptation.
2//!
3//! Rank 11 in the layer rule. See `xtask/layers.toml` and `spec/18-package-layout.md`.
4
5#![forbid(unsafe_code)]
6
7/// The crate this rank belongs to, so that the layer check has something to read and the
8/// scaffold compiles. Replaced by the first real item.
9pub const RANK: u8 = 11;