From: Norbert Buchmuller Date: Wed, 2 Sep 2009 02:20:17 +0000 (+0200) Subject: Added a comment to the example code to stress that it does not work. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a268a910c7188f10880796cb38ffd679ebc66d08;p=dbsrgits%2FDBIx-Class-Historic.git Added a comment to the example code to stress that it does not work. --- diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod index 93068d5..d9ab93b 100644 --- a/lib/DBIx/Class/Manual/Cookbook.pod +++ b/lib/DBIx/Class/Manual/Cookbook.pod @@ -336,7 +336,7 @@ B: You have to explicitly use '=' when doing an equality comparison. The following will B work: my $rs = $schema->resultset('CD')->search({ - artist_id => $inside_rs->get_column('id')->as_query, + artist_id => $inside_rs->get_column('id')->as_query, # does NOT work }); =head3 Support