projects
/
dbsrgits/DBIx-Class-Schema-Loader.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
41ef22d
)
Use join_type => 'LEFT' rather than 'LEFT OUTER' for consistency with
Dagfinn Ilmari Mannsåker [Thu, 11 Dec 2008 16:51:29 +0000 (16:51 +0000)]
the rest of DBIC.
lib/DBIx/Class/Schema/Loader/RelBuilder.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/DBIx/Class/Schema/Loader/RelBuilder.pm
b/lib/DBIx/Class/Schema/Loader/RelBuilder.pm
index
553a58e
..
4e917a6
100644
(file)
--- a/
lib/DBIx/Class/Schema/Loader/RelBuilder.pm
+++ b/
lib/DBIx/Class/Schema/Loader/RelBuilder.pm
@@
-218,7
+218,7
@@
sub generate_code {
args => [ $remote_relname,
$remote_class,
\%cond,
- $nullable ? { join_type => 'LEFT OUTER' } : ()
+ $nullable ? { join_type => 'LEFT' } : ()
],
}
);