Method: Riddle::Query::Select#initialize
- Defined in:
- lib/riddle/query/select.rb
#initialize ⇒ Select
Returns a new instance of Select.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/riddle/query/select.rb', line 2 def initialize @values = [] @indices = [] @matching = nil @wheres = {} @where_alls = {} @where_nots = {} @where_not_alls = {} @group_by = nil @group_best = nil @having = [] @order_by = nil @order_within_group_by = nil @offset = nil @limit = nil @options = {} end |