class ActiveRecord::StatementCache::PartialQueryCollector

def <<(str)

def <<(str)
  @parts << str
  self
end

def add_bind(obj)

def add_bind(obj)
  @binds << obj
  @parts << Substitute.new
  self
end

def initialize

def initialize
  @parts = []
  @binds = []
end

def value

def value
  [@parts, @binds]
end