From 7512b5e5482ea8a01095f98f82f1380f19a07110 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 30 Mar 2008 21:48:19 +0000 Subject: - 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 --- lib/sqlalchemy/databases/mssql.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'lib/sqlalchemy/databases/mssql.py') diff --git a/lib/sqlalchemy/databases/mssql.py b/lib/sqlalchemy/databases/mssql.py index 0ebb84a16..da42ea105 100644 --- a/lib/sqlalchemy/databases/mssql.py +++ b/lib/sqlalchemy/databases/mssql.py @@ -987,8 +987,6 @@ class MSSQLCompiler(compiler.DefaultCompiler): t = self._schema_aliased_table(column.table) if t is not None: return self.process(expression._corresponding_column_or_error(t, column)) - else: - kwargs['use_schema'] = True return super(MSSQLCompiler, self).visit_column(column, **kwargs) def visit_binary(self, binary, **kwargs): -- cgit v1.2.1