method

comment

comment(*values)
public

No documentation available.

# File activerecord/lib/arel/select_manager.rb, line 252
    def comment(*values)
      if values.any?
        @ctx.comment = Nodes::Comment.new(values)
        self
      else
        @ctx.comment
      end
    end