projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e821dce
)
Trivial optimisation in Storage::DBI
Matt S Trout [Sat, 11 Feb 2006 17:04:08 +0000 (17:04 +0000)]
lib/DBIx/Class/Storage/DBI.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Storage/DBI.pm
b/lib/DBIx/Class/Storage/DBI.pm
index
c218ef1
..
4a72a95
100644
(file)
--- a/
lib/DBIx/Class/Storage/DBI.pm
+++ b/
lib/DBIx/Class/Storage/DBI.pm
@@
-130,6
+130,7
@@
sub _join_condition {
sub _quote {
my ($self, $label) = @_;
return '' unless defined $label;
+ return $label unless $self->{quote_char};
return $self->SUPER::_quote($label);
}