# File test/src/sql_parser.rb, line 208
  def union_maker
    keyword[:union] >> (keyword[:all]>>true|false).map do |all|
      proc {|r1, r2|UnionRelation.new(r1, all, r2)}
    end
  end