From 4a2aef97a0e6ea66cabdf294ab3a4d3542708844 Mon Sep 17 00:00:00 2001
From: David Schmidt
Date: Wed, 20 Feb 2013 14:46:08 +0100
Subject: [PATCH] fix missing cond in 'Equivalent SQL'
---
lib/DBIx/Class/Manual/Cookbook.pod | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/DBIx/Class/Manual/Cookbook.pod b/lib/DBIx/Class/Manual/Cookbook.pod
index 328c89153..824a46465 100644
--- a/lib/DBIx/Class/Manual/Cookbook.pod
+++ b/lib/DBIx/Class/Manual/Cookbook.pod
@@ -605,6 +605,7 @@ C:
# JOIN artist ON cd.artist = artist.id
# JOIN liner_notes ON cd.id = liner_notes.cd
# WHERE artist.name = 'Bob Marley'
+ # AND liner_notes.notes LIKE '%some text%'
# ORDER BY artist.name
=head2 Multi-step joins