Subject: | Apply quote chars on table names |
Some databases allow the use of special words as table names, when
quoted properly (e.g., a table "group" can be created in Pg and SQLite).
DBIx::Class::Schema::Loader doesn't properly quote table names, which
makes it crash when encountering such a table. This can be fixed by calling
$self->schema->storage->sql_maker->quote_char($self->{_quoter});
somewhere in DBIx::Class::Schema::Loader::DBI.