projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
057d471
)
bugfix to Oracle columns_info_for
Brandon L. Black [Mon, 21 Aug 2006 17:33:02 +0000 (17:33 +0000)]
lib/DBIx/Class/Storage/DBI/Oracle.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Storage/DBI/Oracle.pm
b/lib/DBIx/Class/Storage/DBI/Oracle.pm
index
d5b605f
..
1cda2e3
100644
(file)
--- a/
lib/DBIx/Class/Storage/DBI/Oracle.pm
+++ b/
lib/DBIx/Class/Storage/DBI/Oracle.pm
@@
-41,7
+41,7
@@
sub get_autoinc_seq {
sub columns_info_for {
my ($self, $table) = @_;
- $self->next::method($self, uc($table));
+ $self->next::method(uc($table));
}