From: Matt S Trout Date: Fri, 1 Nov 2013 10:33:00 +0000 (+0000) Subject: t/prefetch/o2m_o2m_order_by_with_limit.t: literal identifier now gets quoted X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d8c412fd3745c1f409a58e70fbc962b0175600c1;p=dbsrgits%2FDBIx-Class.git t/prefetch/o2m_o2m_order_by_with_limit.t: literal identifier now gets quoted --- diff --git a/t/prefetch/o2m_o2m_order_by_with_limit.t b/t/prefetch/o2m_o2m_order_by_with_limit.t index f9f78ca..bc08382 100644 --- a/t/prefetch/o2m_o2m_order_by_with_limit.t +++ b/t/prefetch/o2m_o2m_order_by_with_limit.t @@ -102,7 +102,7 @@ for ( WHERE "me"."rank" = ? GROUP BY "cds_unordered"."cdid", "cds_unordered"."artist", "cds_unordered"."title", "cds_unordered"."year", "cds_unordered"."genreid", "cds_unordered"."single_track" ORDER BY MAX("genre"."name") DESC, - MAX( tracks.title ) DESC, + MAX("tracks"."title") DESC, MIN("me"."name"), "year" DESC, "cds_unordered"."title" DESC @@ -116,7 +116,7 @@ for ( ON "tracks"."cd" = "cds_unordered"."cdid" WHERE "me"."rank" = ? ORDER BY "genre"."name" DESC, - tracks.title DESC, + "tracks"."title" DESC, "me"."name" ASC, "year" DESC, "cds_unordered"."title" DESC