]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- PG: somewhat better support for % signs in table/column names;
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 9 Aug 2009 22:11:40 +0000 (22:11 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 9 Aug 2009 22:11:40 +0000 (22:11 +0000)
commitf0d2e599b60317fc27f64f0abe7d2af65fba7e7b
treeb5133f1cffbbf90e299669c1e21544b90aacf674
parent00d247edcc89ae7620d75112cd9183138db7ebe7
- PG: somewhat better support for % signs in table/column names;
psycopg2 can't handle a bind parameter name of
%(foobar)s however and SQLA doesn't want to add overhead
just to treat that one non-existent use case.
[ticket:1279]
- MySQL: somewhat better support for % signs in table/column names;
MySQLdb can't handle % signs in SQL when executemany() is used,
and SQLA doesn't want to add overhead just to treat that one
non-existent use case. [ticket:1279]
CHANGES
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/postgresql/base.py
test/sql/test_query.py