]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- schema-qualified tables now will place the schemaname
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 30 Mar 2008 21:48:19 +0000 (21:48 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 30 Mar 2008 21:48:19 +0000 (21:48 +0000)
commit7512b5e5482ea8a01095f98f82f1380f19a07110
treec262ad7eae3bb2331a9bdd46fff79c2f3f46b9d7
parentc096aeefe04ff77dbbef084923c75bf928620a27
- schema-qualified tables now will place the schemaname
ahead of the tablename in all column expressions as well
as when generating column labels.  This prevents cross-
schema name collisions in all cases [ticket:999]
- the "use_schema" argument to compiler.visit_column() is removed.  It uses
schema in all cases now.
- added a new test to the PG dialect to test roundtrip insert/update/delete/select
statements with full schema qualification
CHANGES
lib/sqlalchemy/databases/mssql.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/expression.py
test/dialect/postgres.py
test/sql/select.py