]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commit
- [bug] implement 'tablename' parameter on
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 28 Feb 2012 16:21:07 +0000 (11:21 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 28 Feb 2012 16:21:07 +0000 (11:21 -0500)
commit53b9cccf73a7655191186fcc9b721f7a448255c0
tree992d7e2d0647f52e8ed2766411e54b99d9304c70
parent11549d1f4c1889a1b72a1391e6ee41d67b47cdbf
- [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
alembic/ddl/impl.py
alembic/environment.py
alembic/operations.py
tests/test_mssql.py
tests/test_postgresql.py