Also require new SQLA with more goodies (and which can take advantage
of an unquoted NULL)
Revision history for DBIx::Class
+ * New Features / Changes
+ - NULL is now supplied unquoted to all debug-objects, in order to
+ differentiate between a real NULL and the string 'NULL'
+
* Fixes
- Fixed read-only attribute set attempt in ::Storage::Replicated
(RT#62642)
'MRO::Compat' => '0.09',
'Module::Find' => '0.06',
'Path::Class' => '0.18',
- 'SQL::Abstract' => '1.69',
+ 'SQL::Abstract' => '1.71',
'Sub::Name' => '0.04',
'Variable::Magic' => '0.44',
'Data::Dumper::Concise' => '1.000',
if ( defined( $_ && $_->[1] ) ) {
map { qq{'$_'}; } @{$_}[ 1 .. $#$_ ];
}
- else { q{'NULL'}; }
+ else { q{NULL}; }
} @bind;
}