projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
3c3e76b
)
croak instead of die
Alexander Hartmaier [Thu, 10 Jun 2010 13:40:35 +0000 (15:40 +0200)]
lib/DBIx/Class/SQLAHacks.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/SQLAHacks.pm
b/lib/DBIx/Class/SQLAHacks.pm
index
b5c7d33
..
c3a3f0d
100644
(file)
--- a/
lib/DBIx/Class/SQLAHacks.pm
+++ b/
lib/DBIx/Class/SQLAHacks.pm
@@
-815,7
+815,7
@@
sub _join_condition {
} elsif (ref $cond eq 'ARRAY') {
return join(' OR ', map { $self->_join_condition($_) } @$cond);
} else {
- die "Can't handle this yet!";
+ croak "Can't handle this yet!";
}
}