Merge 'trunk' into 'table_name_ref'
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / CustomSql.pm
CommitLineData
b8b55c8e 1package # hide from PAUSE
2 DBICTest::Schema::CustomSql;
3
4use base qw/DBICTest::Schema::Artist/;
5
6__PACKAGE__->table('dummy');
7
8__PACKAGE__->result_source_instance->name(\<<SQL);
9 ( SELECT a.*, cd.cdid AS cdid, cd.title AS title, cd.year AS year
10 FROM artist a
11 JOIN cd ON cd.artist = a.artistid
12 WHERE cd.year = ?)
13SQL
14
151;