module SQB::IndexHint

Public Instance Methods

index_hint(index) click to toggle source
# File lib/sqb/index_hint.rb, line 4
def index_hint(index)
  @index_hints ||= []
  @index_hints << escape(index)
  self
end
no_index_hint!() click to toggle source
# File lib/sqb/index_hint.rb, line 10
def no_index_hint!
  @index_hints = nil
  self
end