Path: | doc/release_notes/3.17.0.txt |
Last Update: | Thu Apr 04 07:41:51 +0000 2013 |
# < 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)