-
-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
refs #19839 refs https://www.sqlite.org/limits.html SQLite has limit of 500 items in a compound select statement. This limit could be hit when a complex select statement was being generated as part of a batch insert statement. Lowering the batch size will have minimal impact on migration performance while improving SQLite compatibility. One of these bulk inserts is confirmed to be affected through the linked issue. I didn't confirm if the other two cases would trigger it, but the change won't hurt there either.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters