--SQLAlchemy -The Python SQL Toolkit and Object Relational MapperTo post example code, please provide an MCVE: Minimal, Complete, and Verifiable Example. See http://stackoverflow.com/help/mcve for a full description.---You received this message because you are subscribed to the Google Groups "sqlalchemy" group.To unsubscribe from this group and stop receiving emails from it, send an email to sqlalchemy+...@googlegroups.com.To view this discussion on the web visit https://groups.google.com/d/msgid/sqlalchemy/1ffe48c6-4124-40ab-902f-ffa86885ea94n%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sqlalchemy/89002280-96e7-45e9-a11a-f104d8e2aa3fn%40googlegroups.com.
Is the documentation up-to-date?
I printed out a query and there were two insert statements, but the documentation shows one - am I doing something wrong?I see in the postgresql logs two insert statementsLOG: statement: INSERT INTO foo (test) VALUES ('foo1')
LOG: statement: INSERT INTO foo (test) VALUES ('foo2')
This happens for other variants like table(...), bulk_insert_mappings, etc. According to the documentation, it should be something like `INSERT INTO foo (test) VALUES (?) (('foo1'), ('foo2'))`
To view this discussion on the web visit https://groups.google.com/d/msgid/sqlalchemy/9dbd9e55-96b5-4d28-8561-0da19ab815dbn%40googlegroups.com.