From a8cdead32632045c29260b9bd7c2bcd5f2c8f221 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 4 Feb 2007 03:12:27 +0000 Subject: - more quoting fixes for [ticket:450]...quoting more aggressive (but still skips already-quoted literals) - got mysql to have "format" as default paramstyle even if mysql module not available, allows unit tests to pass in non-mysql system for [ticket:457]. all the dialects should be changed to pass in their usual paramstyle. --- lib/sqlalchemy/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlalchemy/schema.py') diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index 2be808ba6..44ba85453 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -482,7 +482,7 @@ class Column(SchemaItem, sql._ColumnClause): """redirect the 'case_sensitive' accessor to use the ultimate parent column which created this one.""" return self.__originating_column._get_case_sensitive() - case_sensitive = property(_case_sens) + case_sensitive = property(_case_sens, lambda s,v:None) def accept_schema_visitor(self, visitor, traverse=True): """traverses the given visitor to this Column's default and foreign key object, -- cgit v1.2.1