raw_execute(sql, name, async: false, allow_retry: false, materialize_transactions: true)
public

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql/database_statements.rb, line 52
        def raw_execute(sql, name, async: false, allow_retry: false, materialize_transactions: true)
          log(sql, name, async: async) do
            with_raw_connection(allow_retry: allow_retry, materialize_transactions: materialize_transactions) do |conn|
              result = conn.async_exec(sql)
              verified!
              handle_warnings(result)
              result
            end
          end
        end