Hello! I have issues with change introduced in this commit https://github.com/rails/arel/commit/d956772b3c61d97940ebcccd7c83e2397ca0c36c I'm doing something like this using deprecated `SelectManager#to_a`. How can I achieve similar result without it? ``` ruby contacts = Arel::Table.new("contacts", db_config) contacts.project(Arel.star.count.as('count')).to_a => [#<struct Arel::SelectManager::Row data={"count"=>42}>] ``` Is this how it should be done now? ``` ruby contacts = Arel::Table.new("#{crm_db_name}.contacts", crm_db) sql = contacts.project(Arel.star.count.as('count')).to_sql contacts.engine.connection.execute(sql).each {|row| row} ``` Thanks!