Skip to main content

nodedb_sql/planner/index_ddl/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3//! Planners for `CREATE INDEX` / `DROP INDEX` parsed via sqlparser.
4
5pub mod create;
6pub mod drop;
7
8pub use create::plan_create_index;
9pub use drop::plan_drop_index;