Skip to content

Commit 11f1f35

Browse files
authored
Merge pull request rails#52694 from aidanharan/perform-query-batch-option
Include batch option in the abstract adapters `perform_query` method signature
2 parents 667a206 + 180d173 commit 11f1f35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ def raw_execute(sql, name = nil, binds = [], prepare: false, async: false, allow
558558
end
559559
end
560560

561-
def perform_query(raw_connection, sql, binds, type_casted_binds, prepare:, notification_payload:)
561+
def perform_query(raw_connection, sql, binds, type_casted_binds, prepare:, notification_payload:, batch:)
562562
raise NotImplementedError
563563
end
564564

0 commit comments

Comments
 (0)