Revision history for DBIx::Class
+ * New Features / Changes
+ - Issue a warning when DateTime objects are passed to ->search
+
* Fixes
- Fix SkipFirst and FirstSkip limit dialects (Informix and Firebird)
* 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) {
+ if (
+ ! $ENV{DBIC_DT_SEARCH_OK}
+ and
+ $op eq 'select'
+ and
+ 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';
+ . 'DBIx::Class::Manual::Cookbook. To disable this warning for good '
+ . 'set $ENV{DBIC_DT_SEARCH_OK} to true'
}
($sql, \@final_bind);
use lib qw(t/lib);
use DBICTest;
+# so user's env doesn't screw us
+undef $ENV{DBIC_DT_SEARCH_OK};
+
my $schema = DBICTest->init_schema();
plan skip_all => 'DT inflation tests need ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_dt_sqlite')
my $starts = $event->starts_at;
is("$starts", '2006-04-25T22:24:33', 'Correct date/time');
+my $dt_warn_re = qr/DateTime objects.+not supported properly/;
+
my $row;
-warnings_exist {
- $row = try {
- $schema->resultset('Event')->search({ starts_at => $starts })->single
+{
+ local $ENV{DBIC_DT_SEARCH_OK} = 1;
+ local $SIG{__WARN__} = sub {
+ fail('Disabled warning still issued') if $_[0] =~ $dt_warn_re;
+ warn @_;
};
-} [qr/DateTime objects.+not supported/],
+ $row = $schema->resultset('Event')->search({ starts_at => $starts })->single
+}
+
+warnings_exist {
+ $row = $schema->resultset('Event')->search({ starts_at => $starts })->single
+} [$dt_warn_re],
'using a DateTime object in ->search generates a warning';
TODO: {
is(eval { $row->id }, 1, 'DT in search');
- local $SIG{__WARN__} = sub {
- warn @_ unless $_[0] =~ /DateTime objects.+not supported/;
- };
+ local $ENV{DBIC_DT_SEARCH_OK} = 1;
ok($row =
$schema->resultset('Event')->search({ starts_at => { '>=' => $starts } })