class Arel::Nodes::SelectCore

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 30 samples from 1 application.

def initialize(relation = nil)
  super()
  @source = JoinSource.new(relation)
  # https://ronsavage.github.io/SQL/sql-92.bnf.html#set%20quantifier
  @set_quantifier  = nil
  @optimizer_hints = nil
  @projections     = []
  @wheres          = []
  @groups          = []
  @havings         = []
  @windows         = []
  @comment         = nil
end