Sqlalchemy postgresql Reserved key word as column name not able to insert
I have a table with column name "collation" whose schema I cannot change. I generated some data I want to insert into this table using the following code snippet: from sqlalchemy.dialects import postgresql data = [{"collation": "foo"}, {"collation":"bar"}] stmt =…