From: Peter Rabbitson <ribasushi@cpan.org>
Date: Sat, 9 Jan 2010 10:42:21 +0000 (+0000)
Subject: Highlight the real problem
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4bb438ca0013a462dade697ea120803a0700306e;p=dbsrgits%2FDBIx-Class-Historic.git

Highlight the real problem
---

diff --git a/t/746mssql.t b/t/746mssql.t
index f73f5ff..a4720c8 100644
--- a/t/746mssql.t
+++ b/t/746mssql.t
@@ -320,6 +320,13 @@ TODO: {
     join ("\x00", map { $_->name } ($owners->all) ),
     'Sadly sort not preserved from within a corelated subquery',
   );
+
+  cmp_ok (
+    join ("\x00", sort map { $_->name } ($corelated_owners->all) ),
+      'ne',
+    join ("\x00", sort map { $_->name } ($owners->all) ),
+    'Which in fact gives a completely wrong dataset',
+  );
 }