This method is deprecated or moved on the latest stable version.
The last existing version (v5.1.7) is shown here.
arel_engine()
public
Returns the Arel engine.
# File activerecord/lib/active_record/core.rb, line 276
def arel_engine # :nodoc:
@arel_engine ||=
if Base == self || connection_handler.retrieve_connection_pool(connection_specification_name)
self
else
superclass.arel_engine
end
end