Bumping version to 1.90_03
[dbsrgits/SQL-Abstract.git] / lib / SQL / Abstract.pm
index 91d1898..3439e37 100644 (file)
@@ -28,7 +28,7 @@ BEGIN {
 # GLOBALS
 #======================================================================
 
-our $VERSION  = '1.90_02';
+our $VERSION  = '1.90_03';
 
 # This would confuse some packagers
 $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases
@@ -155,6 +155,7 @@ our %Defaults = (
     (map +($_ => '_expand_op_is'), ('is', 'is_not')),
     (map +($_ => __PACKAGE__->make_unop_expander("_expand_${_}")),
       qw(ident value nest)),
+    bind => __PACKAGE__->make_unop_expander(sub { +{ -bind => $_[2] } }),
   },
   render => {
     (map +($_, "_render_$_"),
@@ -321,11 +322,12 @@ sub new {
       });
     }
     if ($class->isa('SQL::Abstract::More')) {
+      my $orig = $opt{expand_op}{or};
       $opt{expand_op}{or} = sub {
         my ($self, $logop, $v, $k) = @_;
         if ($k and ref($v) eq 'ARRAY') {
           my ($type, $val) = @$v;
-          my $op = $self->{cmp};
+          my $op;
           if (
             ref($type) eq 'HASH' and ref($val) eq 'HASH'
             and keys %$type == 1 and keys %$val == 1
@@ -336,10 +338,12 @@ sub new {
             ($val) = values %$val;
           }
           if ($self->is_bind_value_with_type(my $v = [ $type, $val ])) {
-            return $self->_expand_hashpair($k, { $op, { -bind => $v } });
+            return $self->expand_expr(
+              { $k, map +($op ? { $op => $_ } : $_), { -bind => $v } }
+            );
           }
         }
-        return $self->_expand_op_andor($logop, $v, $k);
+        return $self->$orig($logop, $v, $k);
       };
       $opt{render}{bind} = sub {
         return [ '?', map +(ref($_->[0]) ? $_ : $_->[1]), $_[2] ]
@@ -884,7 +888,7 @@ sub render_aqt {
   die "Not a node type: $k" unless $k =~ s/^-//;
   if (my $meth = $self->{render}{$k}) {
     local our $Render_Top_Level = $top_level;
-    return $self->$meth($k, $v);
+    return $self->$meth($k, $v)||[];
   }
   die "notreached: $k";
 }
@@ -1280,8 +1284,11 @@ sub _expand_ident {
   unless (defined($body) or (ref($body) and ref($body) eq 'ARRAY')) {
     puke "-ident requires a single plain scalar argument (a quotable identifier) or an arrayref of identifier parts";
   }
-  my @parts = map split(/\Q${\($self->{name_sep}||'.')}\E/, $_),
-                ref($body) ? @$body : $body;
+  my ($sep) = map +(defined() ? $_ : '.') , $self->{name_sep};
+  my @parts = map +($sep
+                     ? map split(/\Q${sep}\E/, $_), @$_
+                     : @$_
+                   ), ref($body) ? $body : [ $body ];
   return { -ident => $parts[-1] } if $self->{_dequalify_idents};
   unless ($self->{quote_char}) {
     $self->_assert_pass_injection_guard($_) for @parts;