This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
require Collection
s rather than Iterable
s in storage functions
#11569
Labels
T-Task
Refactoring, removal, replacement, enabling or disabling functionality, other engineering tasks.
There are various methods in
DatabasePool
(such assimple_insert_many_values
) which claim to take arbitraryIterable
s as arguments when in fact they cannot be generators (since they may be evaluated more than once: see #11564).We should change their definitions to
Collection
.The text was updated successfully, but these errors were encountered: