为什么 Arel 在构建 SQL 时放弃 'left outer join'?

Why is Arel dropping the 'left outer join' when it builds SQL?

我正在尝试在 Arel 中构建以下查询:

select a.* from (first nested query) as a
left outer join (second nested query) as b
on a.id = b.id
where b.id is null;

这是我最好的尝试:

query = a.
  project(a[Arel.star]).
  from(a_nested_sql).
  join(b_nested_sql, Arel::Nodes::OuterJoin).
  on(a[:id].eq(b[:id])).
  where(b[:id].eq(nil))

但它不断丢弃 'left outer join' 产生无效的 SQL:

select a.* from (first nested query) as a
(second nested query) as b
on a.id = b.id
where b.id is null;

我做错了什么?

经过大量试验,成功了:

query = a_table.
  project(a_table[Arel.star]).
  from(a_nested_sql).
  join(
    b_table.join(b_nested_sql).join_sources,
    Arel::Nodes::OuterJoin
  ).
  on(a_table[:id].eq(b_table[:id])).
  where(b_table[:id].eq(nil))

不太清楚为什么,因为我不太明白 join_sources 的作用。