X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=xt%2Fclauses.t;h=ce75f173886328af4a5368a807405533aec730fd;hb=2b0b3d43c5d042c60b97b0d84bfc85cfec9d82ac;hp=4e934f86b234d5113c69cc79219ebb587b990ebb;hpb=93253a11f1f3e0ad2479e38f50963593394c9afc;p=scpubgit%2FQ-Branch.git diff --git a/xt/clauses.t b/xt/clauses.t index 4e934f8..ce75f17 100644 --- a/xt/clauses.t +++ b/xt/clauses.t @@ -4,10 +4,10 @@ use Test::More; use SQL::Abstract::Test import => [ qw(is_same_sql_bind is_same_sql) ]; use SQL::Abstract::ExtraClauses; -my $sqlac = SQL::Abstract::ExtraClauses->new; +my $sqlac = SQL::Abstract::ExtraClauses->new(unknown_unop_always_func => 1); my ($sql, @bind) = $sqlac->select({ - select => [ qw(artist.id artist.name), { -func => [ json_agg => 'cd' ] } ], + select => [ qw(artist.id artist.name), { -json_agg => 'cd' } ], from => [ { artists => { -as => 'artist' } }, -join => [ cds => as => 'cd' => on => { 'cd.artist_id' => 'artist.id' } ], @@ -15,7 +15,7 @@ my ($sql, @bind) = $sqlac->select({ where => { 'artist.genres', => { '@>', { -value => [ 'Rock' ] } } }, order_by => 'artist.name', group_by => 'artist.id', - having => { '>' => [ { -func => [ count => 'cd.id' ] }, 3 ] } + having => { '>' => [ { -count => 'cd.id' }, 3 ] } }); is_same_sql_bind( @@ -24,9 +24,9 @@ is_same_sql_bind( SELECT artist.id, artist.name, JSON_AGG(cd) FROM artists AS artist JOIN cds AS cd ON cd.artist_id = artist.id WHERE artist.genres @> ? - ORDER BY artist.name GROUP BY artist.id HAVING COUNT(cd.id) > ? + ORDER BY artist.name }, [ [ 'Rock' ], 3 ] ); @@ -115,4 +115,64 @@ is_same_sql_bind( [ 1..6 ], ); +is_same_sql( + $sqlac->select({ + select => '*', + from => 'foo', + where => { -not_exists => { + -select => { + select => \1, + from => 'bar', + where => { 'foo.id' => { -ident => 'bar.foo_id' } } + }, + } }, + }), + q{SELECT * FROM foo + WHERE NOT EXISTS (SELECT 1 FROM bar WHERE foo.id = bar.foo_id)}, +); + +is_same_sql( + $sqlac->select({ + select => '*', + from => 'foo', + where => { id => { + '=' => { -select => { select => { -max => 'id' }, from => 'foo' } } + } }, + }), + q{SELECT * FROM foo WHERE id = (SELECT MAX(id) FROM foo)}, +); + +{ + my $sqlac = $sqlac->clone + ->clauses_of( + select => ( + $sqlac->clauses_of('select'), + qw(limit offset), + ) + ); + + ($sql, @bind) = $sqlac->select({ + select => '*', + from => 'foo', + limit => 10, + offset => 20, + }); + + is_same_sql_bind( + $sql, \@bind, + q{SELECT * FROM foo LIMIT ? OFFSET ?}, [ 10, 20 ] + ); +} + +($sql) = $sqlac->select({ + select => { -as => [ 1, 'x' ] }, + union => { -select => { select => { -as => [ 2, 'x' ] } } }, + order_by => { -desc => 'x' }, +}); + +is_same_sql( + $sql, + q{(SELECT 1 AS x) UNION (SELECT 2 AS x) ORDER BY x DESC}, +); + done_testing;