module RecordCache::Arel::TreeManager::InstanceMethods

Public Instance Methods

to_sql_with_record_cache() click to toggle source
# File lib/record_cache/datastore/active_record_30.rb, line 77
def to_sql_with_record_cache
  sql = to_sql_without_record_cache
  sql.instance_variable_set(:@arel, self)
  sql
end