Skip to main content

nodedb_sql/ddl_ast/parse/database/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3//! Parser for database-level DDL: CREATE / DROP / ALTER / USE / CLONE /
4//! MIRROR / MOVE TENANT / BACKUP / RESTORE / SHOW DATABASE(S).
5
6mod alter;
7mod backup_restore;
8mod clone;
9mod create;
10mod dispatch;
11mod drop_db;
12mod mirror;
13mod move_tenant;
14mod quota_spec;
15mod show_extras;
16mod use_db;
17mod with_options;
18
19pub use dispatch::try_parse;
20pub use quota_spec::parse_quota_spec;