From: Peter Rabbitson Date: Thu, 29 Mar 2012 02:53:28 +0000 (+0200) Subject: Sanify handling of genericsubquery order determination, and order binds X-Git-Tag: v0.08197~37^2~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=2d841fdcd476a0556da75626f56d927668208d50 Sanify handling of genericsubquery order determination, and order binds --- diff --git a/lib/DBIx/Class/SQLMaker/LimitDialects.pm b/lib/DBIx/Class/SQLMaker/LimitDialects.pm index dde627b..c67c22b 100644 --- a/lib/DBIx/Class/SQLMaker/LimitDialects.pm +++ b/lib/DBIx/Class/SQLMaker/LimitDialects.pm @@ -566,6 +566,7 @@ sub _GenericSubQ { my ($first_order_by) = do { local $self->{quote_char}; + local $self->{order_bind}; map { ref $_ ? $_->[0] : $_ } $self->_order_by_chunks ($rs_attrs->{order_by}) } or $self->throw_exception ( 'Generic Subquery Limit does not work on resultsets without an order. Provide a single, ' @@ -588,12 +589,21 @@ sub _GenericSubQ { "Generic Subquery Limit first order criteria '$first_ord_col' must be unique" ) unless $root_rsrc->_identifying_column_set([$first_ord_col]); - my $sq_attrs = $self->_subqueried_limit_attrs ($sql, $rs_attrs); + my $sq_attrs = do { + # perform the mangling only using the very first order crietria + # (the one we care about) + local $rs_attrs->{order_by} = $first_order_by; + $self->_subqueried_limit_attrs ($sql, $rs_attrs); + }; my $cmp_op = $direction eq 'desc' ? '>' : '<'; my $count_tbl_alias = 'rownum__emulation'; - my $order_sql = $self->_order_by (delete $rs_attrs->{order_by}); + my ($order_sql, @order_bind) = do { + local $self->{order_bind}; + my $s = $self->_order_by (delete $rs_attrs->{order_by}); + ($s, @{$self->{order_bind}}); + }; my $group_having_sql = $self->_parse_rs_attrs($rs_attrs); my $in_sel = $sq_attrs->{selection_inner}; @@ -618,6 +628,11 @@ sub _GenericSubQ { ; } + # even though binds in order_by make no sense here (the rs needs to be + # ordered by a unique column first) - pass whatever there may be through + # anyway + push @{$self->{limit_bind}}, @order_bind; + return sprintf (" SELECT $sq_attrs->{selection_outer} FROM (