add space to fix stuff pressing up against last paren
Arthur Axel "fREW" Schmidt [Mon, 6 Sep 2010 16:19:37 +0000 (16:19 +0000)]
lib/SQL/Abstract/Tree.pm

index 18cc184..7870e48 100644 (file)
@@ -291,7 +291,7 @@ sub unparse {
     return '(' .
       join(' ',
         map $self->unparse($_, $depth + 2), @{$cdr}) .
-    (_is_select($cdr)?( $self->newline||'' ).$self->indent($depth + 1):'') . ')';
+    (_is_select($cdr)?( $self->newline||'' ).$self->indent($depth + 1):'') . ') ';
   }
   elsif ($car eq 'OR' or $car eq 'AND' or (grep { $car =~ /^ $_ $/xi } @binary_op_keywords ) ) {
     return join (" $car ", map $self->unparse($_, $depth), @{$cdr});