Hey I love this tool and I use it a lot because I am very lazy. However, something has impeded my laziness - I noticed that when I call insert_many with rows that don't all include all the columns that I am inserting, it returns an sqlalchemy error. That is to say, I have to figure out all the column headers first, then set all those values to None before I call insert_many. I looked briefly into the code and I think I understand why this is, I have been thinking about making a pull request that automatically sets any missing column's value to null when calling insert_many, but I was wondering if there is any reason why this change hasn't been made?
Hey I love this tool and I use it a lot because I am very lazy. However, something has impeded my laziness - I noticed that when I call insert_many with rows that don't all include all the columns that I am inserting, it returns an sqlalchemy error. That is to say, I have to figure out all the column headers first, then set all those values to None before I call insert_many. I looked briefly into the code and I think I understand why this is, I have been thinking about making a pull request that automatically sets any missing column's value to null when calling insert_many, but I was wondering if there is any reason why this change hasn't been made?
Hope this makes sense.