[Bast-commits] r9533 - in SQL-Abstract/1.x/branches/sqla-tree: . lib/SQL/Abstract

dhoss at dev.catalyst.perl.org dhoss at dev.catalyst.perl.org
Tue Jun 1 23:16:05 GMT 2010


Author: dhoss
Date: 2010-06-02 00:16:05 +0100 (Wed, 02 Jun 2010)
New Revision: 9533

Added:
   SQL-Abstract/1.x/branches/sqla-tree/testoutput
Modified:
   SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Test.pm
Log:
added test ouput and warn statements

Modified: SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Test.pm
===================================================================
--- SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Test.pm	2010-06-01 23:11:25 UTC (rev 9532)
+++ SQL-Abstract/1.x/branches/sqla-tree/lib/SQL/Abstract/Test.pm	2010-06-01 23:16:05 UTC (rev 9533)
@@ -112,7 +112,7 @@
     # parse
     my $tree1 = $tree->parse($sql1);
     my $tree2 = $tree->parse($sql2);
-
+    warn "_eq_sql result: " . _eq_sql( $tree1, $tree2 );
     return 1 if _eq_sql( $tree1, $tree2 );
 }
 
@@ -121,16 +121,19 @@
 
     # one is defined the other not
     if ( ( defined $left ) xor( defined $right ) ) {
+        warn "got to 'one is defined the other not'";
         return 0;
     }
 
     # one is undefined, then so is the other
     elsif ( not defined $left ) {
+        warn "Got to 'one is undefined, then so is the other'";
         return 1;
     }
 
     # one is a list, the other is an op with a list
     elsif ( ref $left->[0] xor ref $right->[0] ) {
+        warn "got to ' one is a list, the other is an op with a list'";
         $sql_differ = sprintf( "left: %s\nright: %s\n", map { $tree->unparse($_) } ( $left, $right ) );
         return 0;
     }
@@ -138,8 +141,10 @@
     # one is a list, so is the other
     elsif ( ref $left->[0] ) {
         for ( my $i = 0 ; $i <= $#$left or $i <= $#$right ; $i++ ) {
+            warn "got to ' one is a list, so is the other' (loop)";
             return 0 if ( not _eq_sql( $left->[$i], $right->[$i] ) );
         }
+        warn " one is a list, so is the other (no loop)";
         return 1;
     }
 
@@ -154,6 +159,7 @@
             $sql_differ = sprintf "OP [$left->[0]] != [$right->[0]] in\nleft: %s\nright: %s\n",
               $tree->unparse($left),
               $tree->unparse($right);
+              warn "got to 'if operators are different' inside 'unroll'";
             return 0;
         }
 
@@ -164,11 +170,13 @@
                 ( my $r = " $right->[1][0] " ) =~ s/\s+/ /g;
                 my $eq = $case_sensitive ? $l eq $r : uc($l) eq uc($r);
                 $sql_differ = "[$l] != [$r]\n" if not $eq;
+                warn "got to 'elsif operators are identical, compare operands'";
                 return $eq;
             } else {
                 my $eq = _eq_sql( $left->[1], $right->[1] );
                 $sql_differ ||= sprintf( "left: %s\nright: %s\n", map { $tree->unparse($_) } ( $left, $right ) )
                   if not $eq;
+                warn "got to else 'elsif operators are identical, compare operands'";
                 return $eq;
             }
         }

Added: SQL-Abstract/1.x/branches/sqla-tree/testoutput
===================================================================
--- SQL-Abstract/1.x/branches/sqla-tree/testoutput	                        (rev 0)
+++ SQL-Abstract/1.x/branches/sqla-tree/testoutput	2010-06-01 23:16:05 UTC (rev 9533)
@@ -0,0 +1,79621 @@
+Name "main::running_under_some_shell" used only once: possible typo at /usr/bin/prove5.10.0 line 3.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 AND b = 1 AND c = 1
+# sql2: SELECT foo FROM bar WHERE (a = 1 AND b = 1 AND c = 1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 AND b = 1 AND c = 1
+# sql2: SELECT foo FROM bar WHERE (a = 1 AND b = 1) AND c = 1
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 AND b = 1 AND c = 1
+# sql2: SELECT foo FROM bar WHERE a = 1 AND (b = 1 AND c = 1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 AND b = 1 AND c = 1
+# sql2: SELECT foo FROM bar WHERE ((((a = 1))) AND (b = 1 AND c = 1))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1 AND b = 1 AND c = 1)
+# sql2: SELECT foo FROM bar WHERE (a = 1 AND b = 1) AND c = 1
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1 AND b = 1 AND c = 1)
+# sql2: SELECT foo FROM bar WHERE a = 1 AND (b = 1 AND c = 1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1 AND b = 1 AND c = 1)
+# sql2: SELECT foo FROM bar WHERE ((((a = 1))) AND (b = 1 AND c = 1))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1 AND b = 1) AND c = 1
+# sql2: SELECT foo FROM bar WHERE a = 1 AND (b = 1 AND c = 1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1 AND b = 1) AND c = 1
+# sql2: SELECT foo FROM bar WHERE ((((a = 1))) AND (b = 1 AND c = 1))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 AND (b = 1 AND c = 1)
+# sql2: SELECT foo FROM bar WHERE ((((a = 1))) AND (b = 1 AND c = 1))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 OR b = 1 OR c = 1
+# sql2: SELECT foo FROM bar WHERE (a = 1 OR b = 1) OR c = 1
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 OR b = 1 OR c = 1
+# sql2: SELECT foo FROM bar WHERE a = 1 OR (b = 1 OR c = 1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 OR b = 1 OR c = 1
+# sql2: SELECT foo FROM bar WHERE a = 1 OR ((b = 1 OR (c = 1)))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1 OR b = 1) OR c = 1
+# sql2: SELECT foo FROM bar WHERE a = 1 OR (b = 1 OR c = 1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1 OR b = 1) OR c = 1
+# sql2: SELECT foo FROM bar WHERE a = 1 OR ((b = 1 OR (c = 1)))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 OR (b = 1 OR c = 1)
+# sql2: SELECT foo FROM bar WHERE a = 1 OR ((b = 1 OR (c = 1)))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1) AND (b = 1 OR c = 1 OR d = 1) AND (e = 1 AND f = 1)
+# sql2: SELECT foo FROM bar WHERE a = 1 AND (b = 1 OR c = 1 OR d = 1) AND e = 1 AND (f = 1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE (a = 1) AND (b = 1 OR c = 1 OR d = 1) AND (e = 1 AND f = 1)
+# sql2: SELECT foo FROM bar WHERE ( ((a = 1) AND ( b = 1 OR (c = 1 OR d = 1) )) AND ((e = 1)) AND f = 1) 
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a = 1 AND (b = 1 OR c = 1 OR d = 1) AND e = 1 AND (f = 1)
+# sql2: SELECT foo FROM bar WHERE ( ((a = 1) AND ( b = 1 OR (c = 1 OR d = 1) )) AND ((e = 1)) AND f = 1) 
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a IN (1,2,3)
+# sql2: SELECT foo FROM bar WHERE a IN (1,3,2)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a IN (1,2,3)
+# sql2: SELECT foo FROM bar WHERE a IN ((1,2,3))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE a IN (1,3,2)
+# sql2: SELECT foo FROM bar WHERE a IN ((1,2,3))
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT foo FROM bar WHERE completion_date BETWEEN (? AND ?) AND status = ?
+# sql2: SELECT foo FROM bar WHERE ( (completion_date BETWEEN (? AND ?) ) AND status = ? )
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, the other is an op with a list' at lib/SQL/Abstract/Test.pm line 136.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'one is defined the other not' at lib/SQL/Abstract/Test.pm line 124.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'if operators are different' inside 'unroll' at lib/SQL/Abstract/Test.pm line 162.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,2,3)
+# sql2: SELECT * FROM foo WHERE a IN (1,3,2)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,2,3)
+# sql2: SELECT * FROM foo WHERE a IN (2,1,3)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,2,3)
+# sql2: SELECT * FROM foo WHERE a IN (2,3,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,2,3)
+# sql2: SELECT * FROM foo WHERE a IN (3,1,2)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,2,3)
+# sql2: SELECT * FROM foo WHERE a IN (3,2,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,3,2)
+# sql2: SELECT * FROM foo WHERE a IN (2,1,3)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,3,2)
+# sql2: SELECT * FROM foo WHERE a IN (2,3,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,3,2)
+# sql2: SELECT * FROM foo WHERE a IN (3,1,2)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (1,3,2)
+# sql2: SELECT * FROM foo WHERE a IN (3,2,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (2,1,3)
+# sql2: SELECT * FROM foo WHERE a IN (2,3,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (2,1,3)
+# sql2: SELECT * FROM foo WHERE a IN (3,1,2)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (2,1,3)
+# sql2: SELECT * FROM foo WHERE a IN (3,2,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (2,3,1)
+# sql2: SELECT * FROM foo WHERE a IN (3,1,2)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (2,3,1)
+# sql2: SELECT * FROM foo WHERE a IN (3,2,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT * FROM foo WHERE a IN (3,1,2)
+# sql2: SELECT * FROM foo WHERE a IN (3,2,1)
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) FROM foo
+# sql2: SELECT count(*) AS bar FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) FROM foo
+# sql2: SELECT count(*) AS "bar" FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) FROM foo
+# sql2: SELECT count(a) FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) FROM foo
+# sql2: SELECT count(1) FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) AS bar FROM foo
+# sql2: SELECT count(*) AS "bar" FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) AS bar FROM foo
+# sql2: SELECT count(a) FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) AS bar FROM foo
+# sql2: SELECT count(1) FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) AS "bar" FROM foo
+# sql2: SELECT count(a) FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(*) AS "bar" FROM foo
+# sql2: SELECT count(1) FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+
+#   Failed test 'different SQL expressions should have been considered not equal'
+#   at t/10test.t line 844.
+# sql1: SELECT count(a) FROM foo
+# sql2: SELECT count(1) FROM foo
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+_eq_sql result: 1 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+_eq_sql result: 0 at lib/SQL/Abstract/Test.pm line 115.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+ one is a list, so is the other (no loop) at lib/SQL/Abstract/Test.pm line 147.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to ' one is a list, so is the other' (loop) at lib/SQL/Abstract/Test.pm line 144.
+got to 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 173.
+got to else 'elsif operators are identical, compare operands' at lib/SQL/Abstract/Test.pm line 179.
+# Looks like you failed 48 tests of 1710.
+Failed 1/1 test programs. 48/1710 subtests failed.




More information about the Bast-commits mailing list