class Arel::Nodes::SelectStatement

def initialize(relation = nil)

Experimental RBS support (using type sampling data from the type_fusion project).

def initialize: (?Arel::Table relation) -> void

This signature was generated using 22 samples from 1 application.

def initialize(relation = nil)
  super()
  @cores          = [SelectCore.new(relation)]
  @orders         = []
  @limit          = nil
  @lock           = nil
  @offset         = nil
  @with           = nil
end