This fixes maint/gen_schema erroring out after
75d3bdb243
# class, as _use_X may be hardcoded class-wide, and _supports_X calls
# _determine_supports_X which obv. needs a correct driver as well
my @rdbms_specific_methods = qw/
- deployment_statements
sqlt_type
sql_maker
build_datetime_parser
#################### DEPLOY
- $schema->deploy( { add_drop_table => 1 } );
+ $schema->deploy;
#################### DOES ORDERING WORK?
#################### DEPLOY2
- warnings_exist { $schema2->deploy( { add_drop_table => 1 } ) }
+ warnings_exist { $schema2->deploy }
[qr/no such table: main.aba_name_artists/],
"Deploying the bad schema produces a warning: aba_name_artists was not created.";