# File test/src/sql.rb, line 9
  def self.binary(*ops)
    ops.each do |op|
      define_method(op) do |other|
        BinaryExpr.new(self, op, other)
      end
    end
  end