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