Function
plan_create_database
(
_: &StatementContext,
CreateDatabaseStatement {
name,
if_not_exists,
}: CreateDatabaseStatement,
)
Source from the content-addressed store, hash-verified
| 223 | } |
| 224 | |
| 225 | pub fn plan_create_database( |
| 226 | _: &StatementContext, |
| 227 | CreateDatabaseStatement { |
| 228 | name, |
| 229 | if_not_exists, |
| 230 | }: CreateDatabaseStatement, |
| 231 | ) -> Result<Plan, PlanError> { |
| 232 | Ok(Plan::CreateDatabase(CreateDatabasePlan { |
| 233 | name: normalize::ident(name.0), |
| 234 | if_not_exists, |
| 235 | })) |
| 236 | } |
| 237 | |
| 238 | pub fn describe_create_schema( |
| 239 | _: &StatementContext, |
Tested by
no test coverage detected