X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F11unparse.t;h=f45b5e44fe069c26d6275a1891c81996f65ce566;hb=257ecc8a4f33c53c658100982c39f27c736e4423;hp=e61416bcc79b803a43db0e98e71ae0f0834d8ff3;hpb=d7d3d1584c95a2bc501e9b783678fae97ac0bb57;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/11unparse.t b/t/11unparse.t index e61416b..f45b5e4 100644 --- a/t/11unparse.t +++ b/t/11unparse.t @@ -7,7 +7,7 @@ use SQL::Abstract::Tree; my $sqlat = SQL::Abstract::Tree->new; -cmp_deeply($sqlat->parse("SELECT a, b, c FROM foo WHERE foo.a =1 and foo.b LIKE 'station'"), [ +cmp_deeply($sqlat->parse("SELECT a, b.*, * FROM foo WHERE foo.a =1 and foo.b LIKE 'station'"), [ [ [ "SELECT", @@ -24,13 +24,13 @@ cmp_deeply($sqlat->parse("SELECT a, b, c FROM foo WHERE foo.a =1 and foo.b LIKE [ "LITERAL", [ - "b" + "b.*" ] ], [ "LITERAL", [ - "c" + "*" ] ] ]