}
method _join(HashRef $ast) {
+ confess "'args' option to join should be an array ref, not " . dump($ast->{args})
+ unless is_ArrayRef($ast->{args});
+
my ($from, $to) = @{ $ast->{args} };
+
+ # TODO: Validate join type
+ my $type = $ast->{join_type} || "";
- my $output = $self->dispatch($from)
- . ' JOIN '
- . $self->dispatch($to);
+ my @output = $self->dispatch($from);
+
+ push @output, uc $type if $type;
+ push @output, "JOIN", $self->dispatch($to);
- $output .= exists $ast->{on}
- ? ' ON (' . $self->_expr( $ast->{on} )
- : ' USING (' .$self->dispatch($ast->{using} || croak "No 'on' or 'join' clause passed to -join");
+ push @output,
+ exists $ast->{on}
+ ? ('ON', '(' . $self->_expr( $ast->{on} ) . ')' )
+ : ('USING', '(' .$self->dispatch($ast->{using} || croak "No 'on' or 'join' clause passed to -join").
+ ')' );
- $output .= ")";
- return $output;
+ return join(" ", @output);
}
use strict;
use warnings;
-use Test::More tests => 3;
+use Test::More tests => 4;
use Test::Differences;
use_ok('SQL::Abstract') or BAIL_OUT( "$@" );
is $sqla->dispatch(
{ -type => 'join',
- tablespec => {-type => name => args => [qw/foo/]},
+ args => [
+ {-type => name => args => [qw/bar/]},
+ {-type => name => args => [qw/foo/]},
+ ],
on => {
-type => 'expr',
op => '==',
]
}
}
-), "JOIN foo ON (foo.id = me.foo_id)",
+), "bar JOIN foo ON (foo.id = me.foo_id)",
"simple join clause";
is $sqla->dispatch(
{ -type => 'join',
- tablespec => {-type => 'alias', ident => {-type => name => args => [qw/foo/]}, as => 'bar' },
+ args => [
+ {-type => name => args => [qw/fnord/]},
+ {-type => 'alias', ident => {-type => name => args => [qw/foo/]}, as => 'bar' }
+ ],
using => { -type => 'name', args => [qw/foo_id/] },
}
-), "JOIN foo AS bar USING (foo_id)",
+), "fnord JOIN foo AS bar USING (foo_id)",
"using join clause";
+
+
+is $sqla->dispatch(
+ { -type => 'join',
+ join_type => 'LEFT',
+ args => [
+ {-type => name => args => [qw/fnord/]},
+ {-type => 'alias', ident => {-type => name => args => [qw/foo/]}, as => 'bar' }
+ ],
+ using => { -type => 'name', args => [qw/foo_id/] },
+ }
+), "fnord LEFT JOIN foo AS bar USING (foo_id)",
+ "using left join clause";