AkibanInformationSchema ais = ddlFunctions.getAIS(session);
final String schemaName = dropSchema.getSchemaName();
Schema curSchema = ais.getSchema(schemaName);
if((curSchema == null) &&
skipOrThrow(context, dropSchema.getExistenceCheck(), curSchema, new NoSuchSchemaException(schemaName))) {
return;
}
// 1 == RESTRICT, meaning no drop if the schema isn't empty
if (dropSchema.getDropBehavior() == StatementType.DROP_RESTRICT ||
dropSchema.getDropBehavior() == StatementType.DROP_DEFAULT)