projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
22413d8
)
s/primary_columns/_pri_cols/ for Firebird
Rafael Kitover [Fri, 19 Feb 2010 11:25:27 +0000 (11:25 +0000)]
lib/DBIx/Class/Storage/DBI/InterBase.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Storage/DBI/InterBase.pm
b/lib/DBIx/Class/Storage/DBI/InterBase.pm
index
22cb19e
..
085da6e
100644
(file)
--- a/
lib/DBIx/Class/Storage/DBI/InterBase.pm
+++ b/
lib/DBIx/Class/Storage/DBI/InterBase.pm
@@
-34,7
+34,7
@@
sub _prep_for_execute {
my ($op, $extra_bind, $ident, $args) = @_;
if ($op eq 'insert') {
- my @pk = $ident->primary_columns;
+ my @pk = $ident->_pri_cols;
my %pk;
@pk{@pk} = ();