1 package # hide from PAUSE
2 DBICTest::Schema::CustomSql;
4 use base qw/DBICTest::Schema::Artist/;
6 __PACKAGE__->table('dummy');
8 __PACKAGE__->result_source_instance->name(\<<SQL);
9 ( SELECT a.*, cd.cdid AS cdid, cd.title AS title, cd.year AS year
11 JOIN cd ON cd.artist = a.artistid
15 sub sqlt_deploy_hook { $_[1]->schema->drop_table($_[1]) }