diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-10-02 15:49:12 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2007-10-02 15:49:12 +0000 |
commit | ee2247f78f2c0d7420c179a8a8eed144188e958b (patch) | |
tree | 52a2a4c9879d2cacdeff346f90625948d64b08ef /lib/sqlalchemy/sql/compiler.py | |
parent | 35ff8ed25e8a03b36461fbe09d0530bb1164ce82 (diff) | |
download | sqlalchemy-ee2247f78f2c0d7420c179a8a8eed144188e958b.tar.gz |
removed unused _fold_identifier_case method
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r-- | lib/sqlalchemy/sql/compiler.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 6d22da1de..3afd3fdc3 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -963,18 +963,6 @@ class IdentifierPreparer(object): return self.initial_quote + self._escape_identifier(value) + self.final_quote - def _fold_identifier_case(self, value): - """Fold the case of an identifier. - - Subclasses should override this to provide database-dependent - case folding behavior. - """ - - return value - # ANSI SQL calls for the case of all unquoted identifiers to be folded to UPPER. - # some tests would need to be rewritten if this is done. - #return value.upper() - def _requires_quotes(self, value): """Return True if the given identifier requires quoting.""" lc_value = value.lower() |