]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- [feature] Added "MATCH" clause to ForeignKey,
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jun 2012 20:32:38 +0000 (16:32 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jun 2012 20:32:38 +0000 (16:32 -0400)
commitd5609d77841ab4e607e6b372a15396b38ddace9a
treeeb6faaeed9e58ed6d87b675eb0c27f363fc4de56
parent2272f30af435c5283157724bbb16fb0a573159ce
- [feature] Added "MATCH" clause to ForeignKey,
ForeignKeyConstraint, courtesy Ryan Kelly.
[ticket:2502]
- [feature] Added support for DELETE and UPDATE from
an alias of a table, which would assumedly
be related to itself elsewhere in the query,
courtesy Ryan Kelly.  [ticket:2507]
- [feature] Added support for the Postgresql ONLY
keyword, which can appear corresponding to a
table in a SELECT, UPDATE, or DELETE statement.
The phrase is established using with_hint().
Courtesy Ryan Kelly [ticket:2506]
CHANGES
lib/sqlalchemy/dialects/mssql/base.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/sql/compiler.py
test/dialect/test_postgresql.py
test/sql/test_compiler.py