1 package # hide from PAUSE
4 use base qw/DBICTest::BaseResult/;
6 # this tests table name as scalar ref
8 __PACKAGE__->table(\'cd');
10 __PACKAGE__->add_columns(
12 data_type => 'integer',
13 is_auto_increment => 1,
16 data_type => 'integer',
19 data_type => 'varchar',
23 data_type => 'varchar',
27 data_type => 'integer',
32 data_type => 'integer',
37 __PACKAGE__->set_primary_key('cdid');
38 __PACKAGE__->add_unique_constraint([ qw/artist title/ ]);
40 __PACKAGE__->belongs_to( artist => 'DBICTest::Schema::Artist', undef, {
42 proxy => { artist_name => 'name' },
44 __PACKAGE__->belongs_to( very_long_artist_relationship => 'DBICTest::Schema::Artist', 'artist', {
48 # in case this is a single-cd it promotes a track from another cd
49 __PACKAGE__->belongs_to( single_track => 'DBICTest::Schema::Track', 'single_track',
50 { join_type => 'left'}
53 __PACKAGE__->has_many( tracks => 'DBICTest::Schema::Track' );
54 __PACKAGE__->has_many(
55 tags => 'DBICTest::Schema::Tag', undef,
56 { order_by => 'tag' },
58 __PACKAGE__->has_many(
59 cd_to_producer => 'DBICTest::Schema::CD_to_Producer' => 'cd'
62 __PACKAGE__->might_have(
63 liner_notes => 'DBICTest::Schema::LinerNotes', undef,
64 { proxy => [ qw/notes/ ] },
66 __PACKAGE__->might_have(artwork => 'DBICTest::Schema::Artwork', 'cd_id');
67 __PACKAGE__->has_one(mandatory_artwork => 'DBICTest::Schema::Artwork', 'cd_id');
69 __PACKAGE__->many_to_many( producers => cd_to_producer => 'producer' );
70 __PACKAGE__->many_to_many(
71 producers_sorted => cd_to_producer => 'producer',
72 { order_by => 'producer.name' },
75 __PACKAGE__->belongs_to('genre', 'DBICTest::Schema::Genre',
76 { 'foreign.genreid' => 'self.genreid' },
79 on_delete => 'SET NULL',
80 on_update => 'CASCADE',
84 #This second relationship was added to test the short-circuiting of pointless
85 #queries provided by undef_on_null_fk. the relevant test in 66relationship.t
86 __PACKAGE__->belongs_to('genre_inefficient', 'DBICTest::Schema::Genre',
87 { 'foreign.genreid' => 'self.genreid' },
90 on_delete => 'SET NULL',
91 on_update => 'CASCADE',
92 undef_on_null_fk => 0,
97 # This is insane. Don't ever do anything like that
98 # This is for testing purposes only!
100 # mst: mo: DBIC is an "object relational mapper"
101 # mst: mo: not an "object relational hider-because-mo-doesn't-understand-databases
102 # ribasushi: mo: try it with a subselect nevertheless, I'd love to be proven wrong
103 # ribasushi: mo: does sqlite actually take this?
104 # ribasushi: an order in a correlated subquery is insane - how long does it take you on real data?
106 __PACKAGE__->might_have(
108 'DBICTest::Schema::Track',
113 "$args->{foreign_alias}.trackid" => { '=' =>
114 $args->{self_resultsource}->schema->resultset('Track')->search(
115 { 'correlated_tracks.cd' => { -ident => "$args->{self_alias}.cdid" } },
117 order_by => { -desc => 'position' },
119 alias => 'correlated_tracks',
120 columns => ['trackid']