We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reported by @nieuwenhoven in #225 along with a proposed fix.
The text was updated successfully, but these errors were encountered:
I managed to replicate this in a test:
def test_insert_all_with_extra_columns_in_later_chunks(fresh_db): chunk = [ {"record": "Record 1"}, {"record": "Record 2"}, {"record": "Record 3"}, {"record": "Record 4", "extra": 1}, ] fresh_db["t"].insert_all(chunk, batch_size=2, alter=True) assert list(fresh_db["t"].rows) == [ {"record": "Record 1", "extra": None}, {"record": "Record 2", "extra": None}, {"record": "Record 3", "extra": None}, {"record": "Record 4", "extra": 1}, ]
Sorry, something went wrong.
8f042ae
Release 3.5
8fcaee0
Refs #228, #229, #230, #231, #232, #234
No branches or pull requests
Reported by @nieuwenhoven in #225 along with a proposed fix.
The text was updated successfully, but these errors were encountered: