diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-02-04 03:12:27 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-02-04 03:12:27 +0000 |
commit | a8cdead32632045c29260b9bd7c2bcd5f2c8f221 (patch) | |
tree | f8e8d83d18b1eaa97afa3008d1339623692f93a7 /lib/sqlalchemy/schema.py | |
parent | 5ce214c7d43a0a0f57785a512272ec2102139fa2 (diff) | |
download | sqlalchemy-a8cdead32632045c29260b9bd7c2bcd5f2c8f221.tar.gz |
- 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.
Diffstat (limited to 'lib/sqlalchemy/schema.py')
-rw-r--r-- | lib/sqlalchemy/schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
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, |