From 53b9cccf73a7655191186fcc9b721f7a448255c0 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 28 Feb 2012 11:21:07 -0500 Subject: - [bug] implement 'tablename' parameter on drop_index() as this is needed by some backends. - [feature] Added execution_options parameter to op.execute(), will call execution_options() on the Connection before executing. The immediate use case here is to allow access to the new no_parameters option in SQLAlchemy 0.7.6, which allows some DBAPIs (psycopg2, MySQLdb) to allow percent signs straight through without escaping, thus providing cross-compatible operation with DBAPI execution and static script generation. --- CHANGES | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index e1cd2bf..6efa997 100644 --- a/CHANGES +++ b/CHANGES @@ -2,7 +2,24 @@ ===== - [feature] Informative error message when op.XYZ directives are invoked at module import time. - + +- [bug] implement 'tablename' parameter on + drop_index() as this is needed by some + backends. + +- [feature] Added execution_options parameter + to op.execute(), will call execution_options() + on the Connection before executing. + + The immediate use case here is to allow + access to the new no_parameters option + in SQLAlchemy 0.7.6, which allows + some DBAPIs (psycopg2, MySQLdb) to allow + percent signs straight through without + escaping, thus providing cross-compatible + operation with DBAPI execution and + static script generation. + - [bug] setup.py won't install argparse if on Python 2.7/3.2 -- cgit v1.2.1