You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem: If you happen to have a very big BMS directory, this exception
might occur:
```
严重: スコア取得時の例外:[SQLITE_TOOBIG] String or BLOB exceeds size
limit (statement too long) Query: SELECT * FROM score WHERE sha256 IN
(...)`
```
And the whole sqlite query statement would be printed in log file.
This commit fixed two overlength sql generate code place by forcing them
to query data chunk by chunk. And one chunk size is set to be 1000.
0 commit comments