* Misc
- Codebase is now trailing-whitespace-free
+ - Issue a warning when DateTime objects are passed to ->search
0.08196 2011-11-29 05:35 (UTC)
* Fixes
}];
}
+ if ($op eq 'select'
+ && first { blessed($_->[1]) && $_->[1]->isa('DateTime') } @final_bind) {
+
+ carp_unique 'DateTime objects passed to search() are not supported '
+ . 'properly (InflateColumn::DateTime formats and settings are not '
+ . 'respected.) See "Formatting DateTime objects in queries" in '
+ . 'DBIx::Class::Manual::Cookbook';
+ }
+
($sql, \@final_bind);
}
use warnings;
use Test::More;
+use Test::Warn;
+use Try::Tiny;
use lib qw(t/lib);
use DBICTest;
my $starts = $event->starts_at;
is("$starts", '2006-04-25T22:24:33', 'Correct date/time');
+my $row;
+
+warnings_exist {
+ $row = try {
+ $schema->resultset('Event')->search({ starts_at => $starts })->single
+ };
+} [qr/DateTime objects.+not supported/],
+ 'using a DateTime object in ->search generates a warning';
+
TODO: {
local $TODO = "We can't do this yet before 0.09" if DBIx::Class->VERSION < 0.09;
- ok(my $row =
- $schema->resultset('Event')->search({ starts_at => $starts })->single);
is(eval { $row->id }, 1, 'DT in search');
+ local $SIG{__WARN__} = sub {
+ warn @_ unless $_[0] =~ /DateTime objects.+not supported/;
+ };
+
ok($row =
- $schema->resultset('Event')->search({ starts_at => { '>=' => $starts } })->single);
+ $schema->resultset('Event')->search({ starts_at => { '>=' => $starts } })
+ ->single);
+
is(eval { $row->id }, 1, 'DT in search with condition');
}