Flowdock
method

new

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: SelectStatement
new(relation = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/arel/nodes/select_statement.rb, line 9
      def initialize(relation = nil)
        super()
        @cores          = [SelectCore.new(relation)]
        @orders         = []
        @limit          = nil
        @lock           = nil
        @offset         = nil
        @with           = nil
      end
Register or log in to add new notes.