Path: | doc/release_notes/3.17.0.txt |
Last Update: | Sat Dec 04 10:38:00 +0000 2010 |
# < 3.17.0: DB[:a].graph(:b, :a_id=>:id). set_graph_aliases(:c=>[:a, :c], :d=>[:b, :d]) # >= 3.17.0: DB[:a].graph(:b, :a_id=>:id).set_graph_aliases(:c=>:a, :d=>:b)
Both of these now yield the SQL:
SELECT a.c, b.d FROM a LEFT OUTER JOIN b ON (b.a_id = a.id)