[Bast-commits] r8278 - in
DBIx-Class/0.08/branches/mssql_limit_regression:
lib/DBIx/Class/Storage/DBI t
ribasushi at dev.catalyst.perl.org
ribasushi at dev.catalyst.perl.org
Sun Jan 10 16:01:24 GMT 2010
Author: ribasushi
Date: 2010-01-10 16:01:24 +0000 (Sun, 10 Jan 2010)
New Revision: 8278
Modified:
DBIx-Class/0.08/branches/mssql_limit_regression/lib/DBIx/Class/Storage/DBI/MSSQL.pm
DBIx-Class/0.08/branches/mssql_limit_regression/t/746mssql.t
Log:
rename as per mst
Modified: DBIx-Class/0.08/branches/mssql_limit_regression/lib/DBIx/Class/Storage/DBI/MSSQL.pm
===================================================================
--- DBIx-Class/0.08/branches/mssql_limit_regression/lib/DBIx/Class/Storage/DBI/MSSQL.pm 2010-01-10 11:04:52 UTC (rev 8277)
+++ DBIx-Class/0.08/branches/mssql_limit_regression/lib/DBIx/Class/Storage/DBI/MSSQL.pm 2010-01-10 16:01:24 UTC (rev 8278)
@@ -193,7 +193,7 @@
if ( scalar $self->sql_maker->_order_by_chunks ($attrs->{order_by}) ) {
$self->throw_exception(
'An ordered subselect encountered - this is not safe! Please see "Ordered Subselects" in DBIx::Class::Storage::DBI::MSSQL
- ') unless $attrs->{unsafe_subselect};
+ ') unless $attrs->{unsafe_subselect_ok};
my $max = 2 ** 32;
$sql =~ s/^ \s* SELECT \s/SELECT TOP $max /xi;
}
@@ -339,13 +339,13 @@
outright disabled for MSSQL.
Thus compromise between usability and perfection is the MSSQL-specific
-L<resultset attribute|DBIx::Class::ResultSet/ATTRIBUTES> C<unsafe_subselect>.
+L<resultset attribute|DBIx::Class::ResultSet/ATTRIBUTES> C<unsafe_subselect_ok>.
It is deliberately not possible to set this on the Storage level, as the user
should inspect (and preferrably regression-test) the return of every such
ResultSet individually. The example above would work if written like:
$rs->search ({}, {
- unsafe_subselect => 1,
+ unsafe_subselect_ok => 1,
prefetch => 'relation',
rows => 2,
offset => 3,
Modified: DBIx-Class/0.08/branches/mssql_limit_regression/t/746mssql.t
===================================================================
--- DBIx-Class/0.08/branches/mssql_limit_regression/t/746mssql.t 2010-01-10 11:04:52 UTC (rev 8277)
+++ DBIx-Class/0.08/branches/mssql_limit_regression/t/746mssql.t 2010-01-10 16:01:24 UTC (rev 8278)
@@ -262,7 +262,7 @@
# make sure ordered subselects *somewhat* work
{
- my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect => 1 });
+ my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect_ok => 1 });
my $al = $owners->current_source_alias;
my $sealed_owners = $owners->result_source->resultset->search (
@@ -288,7 +288,7 @@
local $TODO = "This porbably will never work, but it isn't critical either afaik";
my $book_owner_ids = $schema->resultset ('BooksInLibrary')
- ->search ({}, { join => 'owner', distinct => 1, order_by => 'owner.name', unsafe_subselect => 1 })
+ ->search ({}, { join => 'owner', distinct => 1, order_by => 'owner.name', unsafe_subselect_ok => 1 })
->get_column ('owner');
my $book_owners = $schema->resultset ('Owners')->search ({
@@ -304,7 +304,7 @@
# This is known not to work - thus the negative test
{
- my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect => 1 });
+ my $owners = $schema->resultset ('Owners')->search ({}, { order_by => 'name', offset => 2, rows => 3, unsafe_subselect_ok => 1 });
my $corelated_owners = $owners->result_source->resultset->search (
{
id => { -in => $owners->get_column('id')->as_query },
@@ -351,7 +351,7 @@
'Rows were properly ordered'
);
- my $limited_rs = $rs->search ({}, {rows => 7, offset => 2, unsafe_subselect => 1});
+ my $limited_rs = $rs->search ({}, {rows => 7, offset => 2, unsafe_subselect_ok => 1});
is ($limited_rs->count, 6, 'Correct count of limited right-sorted joined resultset');
is ($limited_rs->count_rs->next, 6, 'Correct count_rs of limited right-sorted joined resultset');
@@ -397,7 +397,7 @@
prefetch => 'books',
order_by => { -asc => \['name + ?', [ test => 'xxx' ]] }, # test bindvar propagation
rows => 3, # 8 results total
- unsafe_subselect => 1,
+ unsafe_subselect_ok => 1,
},
);
@@ -426,7 +426,7 @@
prefetch => 'owner',
rows => 2, # 3 results total
order_by => { -desc => 'owner' },
- unsafe_subselect => 1,
+ unsafe_subselect_ok => 1,
},
);
More information about the Bast-commits
mailing list