projects
/
dbsrgits/DBIx-Class.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
7ec9e4c
)
* Removed extra parens from the ON expression of JOIN (SQLA::Test now handles it...
Norbert Buchmuller [Thu, 27 Nov 2008 04:07:01 +0000 (
05:07
+0100)]
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
c441333
..
3d23970
100644
(file)
--- a/
lib/DBIx/Class/Storage/DBI.pm
+++ b/
lib/DBIx/Class/Storage/DBI.pm
@@
-219,7
+219,7
@@
sub _recurse_from {
} else {
push(@sqlf, $self->_make_as($to));
}
- push(@sqlf, ' ON (', $self->_join_condition($on), ')');
+ push(@sqlf, ' ON ', $self->_join_condition($on));
}
return join('', @sqlf);
}