Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the DBIx-Abstract CPAN distribution.

Report information
The Basics
Id: 4020
Status: resolved
Priority: 0/
Queue: DBIx-Abstract

People
Owner: Nobody in particular
Requestors: rho [...] bigpond.net.au
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.005
Fixed in: (no value)



Subject: insert/replace behaving different from update in providing values
insert and replace check for ARRAY refs: if (ref($values[$i]) eq 'SCALAR') { $sql .= ${$values[$i]}; } elsif (ref($values[$i]) eq 'ARRAY') { $sql .= $values[$i][0]; } else { but update does not: if (ref($values[$i]) eq 'SCALAR') { $sql .= ${$values[$i]}; } else {