From faf4aca165cef9bbd8d90b7a4f4ccf2b3d986ea1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 18 Dec 2007 05:40:06 +0000 Subject: - cleanup; lambdas removed from properties; properties mirror same-named functions (more like eventual decorator syntax); remove some old methods, factor out some "raiseerr" ugliness to outer lying functions. - corresponding_column() integrates "require_embedded" flag with other set arithmetic --- lib/sqlalchemy/databases/mssql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/databases') diff --git a/lib/sqlalchemy/databases/mssql.py b/lib/sqlalchemy/databases/mssql.py index 098bd33c8..1654677b7 100644 --- a/lib/sqlalchemy/databases/mssql.py +++ b/lib/sqlalchemy/databases/mssql.py @@ -915,7 +915,7 @@ class MSSQLCompiler(compiler.DefaultCompiler): # translate for schema-qualified table aliases t = self._schema_aliased_table(column.table) if t is not None: - return self.process(t.corresponding_column(column)) + return self.process(expression._corresponding_column_or_error(t, column)) return super(MSSQLCompiler, self).visit_column(column, **kwargs) def visit_binary(self, binary, **kwargs): -- cgit v1.2.1