home / github / issue_comments

Menu
  • GraphQL API

issue_comments: 778841278

This data as json

html_url issue_url id node_id user created_at updated_at author_association body reactions issue performed_via_github_app
https://github.com/simonw/sqlite-utils/issues/234#issuecomment-778841278 https://api.github.com/repos/simonw/sqlite-utils/issues/234 778841278 MDEyOklzc3VlQ29tbWVudDc3ODg0MTI3OA== 9599 2021-02-14T21:02:11Z 2021-02-14T21:02:11Z OWNER I managed to replicate this in a test: ```python 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}, ] ``` {"total_count": 0, "+1": 0, "-1": 0, "laugh": 0, "hooray": 0, "confused": 0, "heart": 0, "rocket": 0, "eyes": 0} 808046597  
Powered by Datasette · Queries took 2.337ms