1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944
|
package SQL::Abstract::Plugin::ExtraClauses;
use Moo;
with 'SQL::Abstract::Role::Plugin';
sub register_extensions {
my ($self, $sqla) = @_;
my @clauses = $sqla->clauses_of('select');
my @before_setop;
CLAUSE: foreach my $idx (0..$#clauses) {
if ($clauses[$idx] eq 'order_by') {
@before_setop = @clauses[0..$idx-1];
splice(@clauses, $idx, 0, qw(setop group_by having));
last CLAUSE;
}
}
die "Huh?" unless @before_setop;
$sqla->clauses_of(select => @clauses);
$sqla->clauses_of(update => sub {
my ($self, @clauses) = @_;
splice(@clauses, 2, 0, 'from');
@clauses;
});
$sqla->clauses_of(delete => sub {
my ($self, @clauses) = @_;
splice(@clauses, 1, 0, 'using');
@clauses;
});
$self->register(
(map +(
"${_}er" => [
do {
my $x = $_;
(map +($_ => "_${x}_${_}"), qw(join from_list alias))
}
]
), qw(expand render)),
binop_expander => [ as => '_expand_op_as' ],
renderer => [ as => '_render_as' ],
expander => [ cast => '_expand_cast' ],
clause_expanders => [
'select.group_by'
=> sub { $_[0]->expand_expr({ -list => $_[2] }, -ident) },
'select.having'
=> sub { $_[0]->expand_expr($_[2]) },
'update.from' => '_expand_from_list',
"update.target", '_expand_update_clause_target',
"update.update", '_expand_update_clause_target',
'delete.using' => '_expand_from_list',
'insert.rowvalues' => sub {
+(from => $_[0]->expand_expr({ -values => $_[2] }));
},
'insert.select' => sub {
+(from => $_[0]->expand_expr({ -select => $_[2] }));
},
],
);
$sqla->expander(old_from => $sqla->clause_expander('select.from'));
$sqla->wrap_clause_expander('select.from', sub {
my ($orig) = @_;
sub {
my ($sqla, undef, $args) = @_;
if (ref($args) eq 'HASH') {
return $self->_expand_from_list(undef, $args);
}
if (
ref($args) eq 'ARRAY'
and grep { !ref($_) and $_ =~ /^-/ } @$args
) {
return $self->_expand_from_list(undef, $args);
}
return $sqla->$orig(undef, $args);
}
});
# set ops
$sqla->wrap_expander(select => sub {
$self->cb('_expand_select', $_[0], \@before_setop);
});
$self->register(
clause_renderer => [
'select.setop' => sub { $_[0]->render_aqt($_[2]) }
],
expander => [
map +($_ => '_expand_setop', "${_}_all" => '_expand_setop'), qw(union intersect except) ],
renderer => [ map +($_ => '_render_setop'), qw(union intersect except) ],
);
my $setop_expander = $self->cb('_expand_clause_setop');
$sqla->clause_expanders(
map +($_ => $setop_expander),
map "select.${_}",
map +($_, "${_}_all", "${_}_distinct"),
qw(union intersect except)
);
foreach my $stmt (qw(select insert update delete)) {
$sqla->clauses_of($stmt => 'with', $sqla->clauses_of($stmt));
$self->register(
clause_expanders => [
"${stmt}.with" => '_expand_with',
"${stmt}.with_recursive" => '_expand_with',
],
clause_renderer => [ "${stmt}.with" => '_render_with' ],
);
}
return $sqla;
}
sub _expand_select {
my ($self, $orig, $before_setop, @args) = @_;
my $exp = $self->sqla->$orig(@args);
return $exp unless my $setop = (my $sel = $exp->{-select})->{setop};
if (my @keys = grep $sel->{$_}, @$before_setop) {
my %inner; @inner{@keys} = delete @{$sel}{@keys};
unshift @{(values(%$setop))[0]{queries}},
{ -select => \%inner };
}
return $exp;
}
sub _expand_from_list {
my ($self, undef, $args) = @_;
if (ref($args) eq 'HASH') {
return $args if $args->{-from_list};
return { -from_list => [ $self->expand_expr($args) ] };
}
my @list;
my @args = ref($args) eq 'ARRAY' ? @$args : ($args);
while (my $entry = shift @args) {
if (!ref($entry) and $entry =~ /^-(.*)/) {
if ($1 eq 'as') {
$list[-1] = $self->expand_expr({ -as => [
$list[-1], map +(ref($_) eq 'ARRAY' ? @$_ : $_), shift(@args)
]});
next;
}
$entry = { $entry => shift @args };
}
my $aqt = $self->expand_expr($entry, -ident);
if ($aqt->{-join} and not $aqt->{-join}{from}) {
$aqt->{-join}{from} = pop @list;
}
push @list, $aqt;
}
return $list[0] if @list == 1;
return { -from_list => \@list };
}
sub _expand_join {
my ($self, undef, $args) = @_;
my %proto = (
ref($args) eq 'HASH'
? %$args
: (to => @$args)
);
if (my $as = delete $proto{as}) {
$proto{to} = $self->expand_expr(
{ -as => [ { -from_list => $proto{to} }, $as ] }
);
}
if (defined($proto{using}) and ref(my $using = $proto{using}) ne 'HASH') {
$proto{using} = [
map [ $self->expand_expr($_, -ident) ],
ref($using) eq 'ARRAY' ? @$using: $using
];
}
my %ret = (
type => delete $proto{type},
to => $self->expand_expr({ -from_list => delete $proto{to} }, -ident)
);
%ret = (%ret,
map +($_ => $self->expand_expr($proto{$_}, -ident)),
sort keys %proto
);
return +{ -join => \%ret };
}
sub _render_from_list {
my ($self, undef, $list) = @_;
return $self->join_query_parts(', ', @$list);
}
sub _render_join {
my ($self, undef, $args) = @_;
my @parts = (
$args->{from},
{ -keyword => join '_', ($args->{type}||()), 'join' },
(map +($_->{-ident} || $_->{-as}
? $_
: ('(', $self->render_aqt($_, 1), ')')),
map +(@{$_->{-from_list}||[]} == 1 ? $_->{-from_list}[0] : $_),
$args->{to}
),
($args->{on} ? (
{ -keyword => 'on' },
$args->{on},
) : ()),
($args->{using} ? (
{ -keyword => 'using' },
'(', $args->{using}, ')',
) : ()),
);
return $self->join_query_parts(' ', @parts);
}
sub _expand_op_as {
my ($self, undef, $vv, $k) = @_;
my @vv = (ref($vv) eq 'ARRAY' ? @$vv : $vv);
my $ik = $self->expand_expr($k, -ident);
return +{ -as => [ $ik, $self->expand_expr($vv[0], -ident) ] }
if @vv == 1 and ref($vv[0]) eq 'HASH';
my @as = map $self->expand_expr($_, -ident), @vv;
return { -as => [ $ik, $self->expand_expr({ -alias => \@as }) ] };
}
sub _render_as {
my ($self, undef, $args) = @_;
my ($thing, $alias) = @$args;
return $self->join_query_parts(
' ',
$thing,
{ -keyword => 'as' },
$alias,
);
}
sub _render_alias {
my ($self, undef, $args) = @_;
my ($as, @cols) = @$args;
return (@cols
? $self->join_query_parts('',
$as,
'(',
$self->join_query_parts(
', ',
@cols
),
')',
)
: $self->render_aqt($as)
);
}
sub _expand_update_clause_target {
my ($self, undef, $target) = @_;
+(target => $self->_expand_from_list(undef, $target));
}
sub _expand_cast {
my ($self, undef, $thing) = @_;
return { -func => [ cast => $thing ] } if ref($thing) eq 'HASH';
my ($cast, $to) = @{$thing};
+{ -func => [ cast => { -as => [
$self->expand_expr($cast),
$self->expand_expr($to, -ident),
] } ] };
}
sub _expand_alias {
my ($self, undef, $args) = @_;
if (ref($args) eq 'HASH' and my $alias = $args->{-alias}) {
$args = $alias;
}
my @parts = map $self->expand_expr($_, -ident),
ref($args) eq 'ARRAY' ? @{$args} : $args;
return $parts[0] if @parts == 1;
return { -alias => \@parts };
}
sub _expand_with {
my ($self, $name, $with) = @_;
my (undef, $type) = split '_', $name;
if (ref($with) eq 'HASH') {
return +{
%$with,
queries => [
map +[
$self->expand_expr({ -alias => $_->[0] }, -ident),
$self->expand_expr($_->[1]),
], @{$with->{queries}}
]
}
}
my @with = @$with;
my @exp;
while (my ($alias, $query) = splice @with, 0, 2) {
push @exp, [
$self->expand_expr({ -alias => $alias }, -ident),
$self->expand_expr($query)
];
}
return +(with => { ($type ? (type => $type) : ()), queries => \@exp });
}
sub _render_with {
my ($self, undef, $with) = @_;
my $q_part = $self->join_query_parts(', ',
map {
my ($alias, $query) = @$_;
$self->join_query_parts(' ',
$alias,
{ -keyword => 'as' },
$query,
)
} @{$with->{queries}}
);
return $self->join_query_parts(' ',
{ -keyword => join '_', 'with', ($with->{type}||'') },
$q_part,
);
}
sub _expand_setop {
my ($self, $setop, $args) = @_;
my $is_all = $setop =~ s/_all$//;
+{ "-${setop}" => {
($is_all ? (type => 'all') : ()),
(ref($args) eq 'ARRAY'
? (queries => [ map $self->expand_expr($_), @$args ])
: (
%$args,
queries => [ map $self->expand_expr($_), @{$args->{queries}} ]
)
),
} };
}
sub _render_setop {
my ($self, $setop, $args) = @_;
$self->join_query_parts(
{ -keyword => ' '.join('_', $setop, ($args->{type}||())).' ' },
@{$args->{queries}}
);
}
sub _expand_clause_setop {
my ($self, $setop, $args) = @_;
my ($op, $type) = split '_', $setop;
+(setop => $self->expand_expr({
"-${op}" => {
($type ? (type => $type) : ()),
queries => (ref($args) eq 'ARRAY' ? $args : [ $args ])
}
}));
}
1;
__END__
=head1 NAME
SQL::Abstract::ExtraClauses - new/experimental additions to L<SQL::Abstract>
=head1 SYNOPSIS
my $sqla = SQL::Abstract->new;
SQL::Abstract::ExtraClauses->apply_to($sqla);
=head1 WARNING
This module is basically a nursery for things that seem like a good idea
to live in until we figure out if we were right about that.
=head1 METHODS
=head2 apply_to
Applies the plugin to an L<SQL::Abstract> object.
=head2 register_extensions
Registers the extensions described below
=head2 cb
For plugin authors, creates a callback to call a method on the plugin.
=head2 register
For plugin authors, registers callbacks more easily.
=head2 sqla
Available only during plugin callback executions, contains the currently
active L<SQL::Abstract> object.
=head1 NODE TYPES
=head2 alias
Represents a table alias. Expands name and column names with ident as default.
# expr
{ -alias => [ 't', 'x', 'y', 'z' ] }
# aqt
{ -alias => [
{ -ident => [ 't' ] }, { -ident => [ 'x' ] },
{ -ident => [ 'y' ] }, { -ident => [ 'z' ] },
] }
# query
t(x, y, z)
[]
=head2 as
Represents an sql AS. LHS is expanded with ident as default, RHS is treated
as a list of arguments for the alias node.
# expr
{ foo => { -as => 'bar' } }
# aqt
{ -as => [ { -ident => [ 'foo' ] }, { -ident => [ 'bar' ] } ] }
# query
foo AS bar
[]
# expr
{ -as => [ { -select => { _ => 'blah' } }, 't', 'blah' ] }
# aqt
{ -as => [
{ -select =>
{ select => { -op => [ ',', { -ident => [ 'blah' ] } ] } }
},
{ -alias => [ { -ident => [ 't' ] }, { -ident => [ 'blah' ] } ] },
] }
# query
(SELECT blah) AS t(blah)
[]
=head2 cast
# expr
{ -cast => [ { -ident => 'birthday' }, 'date' ] }
# aqt
{ -func => [
'cast', {
-as => [ { -ident => [ 'birthday' ] }, { -ident => [ 'date' ] } ]
},
] }
# query
CAST(birthday AS date)
[]
=head2 join
If given an arrayref, pretends it was given a hashref with the first
element of the arrayref as the value for 'to' and the remaining pairs copied.
Given a hashref, the 'as' key is if presented expanded to wrap the 'to'.
If present the 'using' key is expanded as a list of idents.
Known keys are: 'from' (the left hand side), 'type' ('left', 'right', or
nothing), 'to' (the right hand side), 'on' and 'using'.
# expr
{ -join => {
from => 'lft',
on => { 'lft.bloo' => { '>' => 'rgt.blee' } },
to => 'rgt',
type => 'left',
} }
# aqt
{ -join => {
from => { -ident => [ 'lft' ] },
on => { -op => [
'>', { -ident => [ 'lft', 'bloo' ] },
{ -ident => [ 'rgt', 'blee' ] },
] },
to => { -ident => [ 'rgt' ] },
type => 'left',
} }
# query
lft LEFT JOIN rgt ON lft.bloo > rgt.blee
[]
=head2 from_list
List of components of the FROM clause; -foo type elements indicate a pair
with the next element; this is easiest if I show you:
# expr
{ -from_list => [
't1', -as => 'table_one', -join =>
[ 't2', 'on', { 'table_one.x' => 't2.x' } ],
] }
# aqt
{ -join => {
from =>
{
-as => [ { -ident => [ 't1' ] }, { -ident => [ 'table_one' ] } ]
},
on => { -op => [
'=', { -ident => [ 'table_one', 'x' ] },
{ -ident => [ 't2', 'x' ] },
] },
to => { -ident => [ 't2' ] },
type => undef,
} }
# query
t1 AS table_one JOIN t2 ON table_one.x = t2.x
[]
Or with using:
# expr
{ -from_list =>
[ 't1', -as => 'table_one', -join => [ 't2', 'using', [ 'x' ] ] ]
}
# aqt
{ -join => {
from =>
{
-as => [ { -ident => [ 't1' ] }, { -ident => [ 'table_one' ] } ]
},
to => { -ident => [ 't2' ] },
type => undef,
using =>
{ -op => [ 'or', { -op => [ 'or', { -ident => [ 'x' ] } ] } ] },
} }
# query
t1 AS table_one JOIN t2 USING ( x )
[]
With oddities:
# expr
{ -from_list => [
'x', -join =>
[ [ 'y', -join => [ 'z', 'type', 'left' ] ], 'type', 'left' ],
] }
# aqt
{ -join => {
from => { -ident => [ 'x' ] },
to => { -join => {
from => { -ident => [ 'y' ] },
to => { -ident => [ 'z' ] },
type => 'left',
} },
type => 'left',
} }
# query
x LEFT JOIN ( y LEFT JOIN z )
[]
=head2 setops
Expanders are provided for union, union_all, intersect, intersect_all,
except and except_all, and each takes an arrayref of queries:
# expr
{ -union => [
{ -select => { _ => { -value => 1 } } },
{ -select => { _ => { -value => 2 } } },
] }
# aqt
{ -union => { queries => [
{ -select =>
{ select => { -op => [ ',', { -bind => [ undef, 1 ] } ] } }
},
{ -select =>
{ select => { -op => [ ',', { -bind => [ undef, 2 ] } ] } }
},
] } }
# query
(SELECT ?) UNION (SELECT ?)
[ 1, 2 ]
# expr
{ -union_all => [
{ -select => { _ => { -value => 1 } } },
{ -select => { _ => { -value => 2 } } },
{ -select => { _ => { -value => 1 } } },
] }
# aqt
{ -union => {
queries => [
{ -select =>
{ select => { -op => [ ',', { -bind => [ undef, 1 ] } ] } }
},
{ -select =>
{ select => { -op => [ ',', { -bind => [ undef, 2 ] } ] } }
},
{ -select =>
{ select => { -op => [ ',', { -bind => [ undef, 1 ] } ] } }
},
],
type => 'all',
} }
# query
(SELECT ?) UNION ALL (SELECT ?) UNION ALL (SELECT ?)
[ 1, 2, 1 ]
=head1 STATEMENT EXTENSIONS
=head2 group by clause for select
Expanded as a list with an ident default:
# expr
{ -select => { group_by => [ 'foo', 'bar' ] } }
# aqt
{ -select => { group_by =>
{
-op => [ ',', { -ident => [ 'foo' ] }, { -ident => [ 'bar' ] } ]
}
} }
# query
GROUP BY foo, bar
[]
=head2 having clause for select
Basic expr, just like where, given having is pretty much post-group-by
where clause:
# expr
{ -select =>
{ having => { '>' => [ { -count => { -ident => 'foo' } }, 3 ] } }
}
# aqt
{ -select => { having => { -op => [
'>', { -func => [ 'count', { -ident => [ 'foo' ] } ] },
{ -bind => [ undef, 3 ] },
] } } }
# query
HAVING COUNT(foo) > ?
[ 3 ]
=head2 setop clauses
If a select query contains a clause matching any of the setop node types,
clauses that appear before the setop would in the resulting query are
gathered together and moved into an inner select node:
# expr
{ -select => {
_ => '*',
from => 'foo',
order_by => 'baz',
union =>
{
-select => { _ => '*', from => 'bar', where => { thing => 1 } }
},
where => { thing => 1 },
} }
# aqt
{ -select => {
order_by => { -op => [ ',', { -ident => [ 'baz' ] } ] },
setop => { -union => { queries => [
{ -select => {
from => { -ident => [ 'foo' ] },
select => { -op => [ ',', { -ident => [ '*' ] } ] },
where => { -op => [
'=', { -ident => [ 'thing' ] },
{ -bind => [ 'thing', 1 ] },
] },
} }, ] },
{ -select => {
from => { -ident => [ 'bar' ] },
select => { -op => [ ',', { -ident => [ '*' ] } ] },
where => { -op => [
'=', { -ident => [ 'thing' ] },
{ -bind => [ 'thing', 1 ] },
} },
] } },
} }
# query
(SELECT * FROM foo WHERE thing = ?) UNION (
SELECT * FROM bar WHERE thing = ?
)
ORDER BY baz
[ 1, 1 ]
=head2 update from clause
Some databases allow an additional FROM clause to reference other tables
for the data to update; this clause is expanded as a normal from list, check
your database for what is and isn't allowed in practice.
# expr
{ -update => {
_ => 'employees',
from => 'accounts',
set => { sales_count => { sales_count => { '+' => \1 } } },
where => {
'accounts.name' => { '=' => \"'Acme Corporation'" },
'employees.id' => { -ident => 'accounts.sales_person' },
},
} }
# aqt
{ -update => {
from => { -ident => [ 'accounts' ] },
set => { -op => [
',', { -op => [
'=', { -ident => [ 'sales_count' ] }, { -op => [
'+', { -ident => [ 'sales_count' ] },
{ -literal => [ 1 ] },
] },
] },
] },
target => { -ident => [ 'employees' ] },
where => { -op => [
'and', { -op => [
'=', { -ident => [ 'accounts', 'name' ] },
{ -literal => [ "'Acme Corporation'" ] },
] }, { -op => [
'=', { -ident => [ 'employees', 'id' ] },
{ -ident => [ 'accounts', 'sales_person' ] },
] },
] },
} }
# query
UPDATE employees SET sales_count = sales_count + 1 FROM accounts
WHERE (
accounts.name = 'Acme Corporation'
AND employees.id = accounts.sales_person
)
[]
=head2 delete using clause
Some databases allow an additional USING clause to reference other tables
for the data to update; this clause is expanded as a normal from list, check
your database for what is and isn't allowed in practice.
# expr
{ -delete => {
from => 'x',
using => 'y',
where => { 'x.id' => { -ident => 'y.x_id' } },
} }
# aqt
{ -delete => {
target => { -op => [ ',', { -ident => [ 'x' ] } ] },
using => { -ident => [ 'y' ] },
where => { -op => [
'=', { -ident => [ 'x', 'id' ] },
{ -ident => [ 'y', 'x_id' ] },
] },
} }
# query
DELETE FROM x USING y WHERE x.id = y.x_id
[]
=head2 insert rowvalues and select clauses
rowvalues and select are shorthand for
{ from => { -select ... } }
and
{ from => { -values ... } }
respectively:
# expr
{ -insert =>
{ into => 'numbers', rowvalues => [ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ] }
}
# aqt
{ -insert => {
from => { -values => [
{ -row =>
[ { -bind => [ undef, 1 ] }, { -bind => [ undef, 2 ] } ]
},
{ -row =>
[ { -bind => [ undef, 3 ] }, { -bind => [ undef, 4 ] } ]
},
{ -row =>
[ { -bind => [ undef, 5 ] }, { -bind => [ undef, 6 ] } ]
},
] },
target => { -ident => [ 'numbers' ] },
} }
# query
INSERT INTO numbers VALUES (?, ?), (?, ?), (?, ?)
[ 1, 2, 3, 4, 5, 6 ]
# expr
{ -insert =>
{ into => 'numbers', select => { _ => '*', from => 'old_numbers' } }
}
# aqt
{ -insert => {
from => { -select => {
from => { -ident => [ 'old_numbers' ] },
select => { -op => [ ',', { -ident => [ '*' ] } ] },
} },
target => { -ident => [ 'numbers' ] },
} }
# query
INSERT INTO numbers SELECT * FROM old_numbers
[]
=head2 with and with_recursive clauses
These clauses are available on select/insert/update/delete queries; check
your database for applicability (e.g. mysql supports all four but mariadb
only select).
The value should be an arrayref of name/query pairs:
# expr
{ -select => {
from => 'foo',
select => '*',
with => [ 'foo', { -select => { select => \1 } } ],
} }
# aqt
{ -select => {
from => { -ident => [ 'foo' ] },
select => { -op => [ ',', { -ident => [ '*' ] } ] },
with => { queries => [ [
{ -ident => [ 'foo' ] }, { -select =>
{ select => { -op => [ ',', { -literal => [ 1 ] } ] } }
},
] ] },
} }
# query
WITH foo AS (SELECT 1) SELECT * FROM foo
[]
A more complete example (designed for mariadb, (ab)using the fact that
mysqloids materialise subselects in FROM into an unindexed temp table to
circumvent the restriction that you can't select from the table you're
currently updating:
# expr
{ -update => {
_ => [
'tree_table', -join => {
as => 'tree',
on => { 'tree.id' => 'tree_with_path.id' },
to => { -select => {
from => 'tree_with_path',
select => '*',
with_recursive => [
[ 'tree_with_path', 'id', 'parent_id', 'path' ],
{ -select => {
_ => [
'id', 'parent_id', { -as => [
{ -cast => { -as => [ 'id', 'char', 255 ] } },
'path',
] } ],
from => 'tree_table',
union_all => { -select => {
_ => [
't.id', 't.parent_id', { -as => [
{ -concat => [ 'r.path', \"'/'", 't.id' ] },
'path',
] },
],
from => [
'tree_table', -as => 't', -join => {
as => 'r',
on => { 't.parent_id' => 'r.id' },
to => 'tree_with_path',
},
],
} },
where => { parent_id => undef },
} },
],
} },
},
],
set => { path => { -ident => [ 'tree', 'path' ] } },
} }
# query
UPDATE
tree_table JOIN
(
WITH RECURSIVE
tree_with_path(id, parent_id, path) AS (
(
SELECT id, parent_id, CAST(id AS char(255)) AS path
FROM tree_table WHERE parent_id IS NULL
) UNION ALL (
SELECT t.id, t.parent_id, CONCAT(r.path, '/', t.id) AS path
FROM
tree_table AS t JOIN tree_with_path AS r ON
t.parent_id = r.id
)
)
SELECT * FROM tree_with_path
) AS tree
ON tree.id = tree_with_path.id
SET path = tree.path
[]
=cut
|