From ee2247f78f2c0d7420c179a8a8eed144188e958b Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Tue, 2 Oct 2007 15:49:12 +0000 Subject: removed unused _fold_identifier_case method --- lib/sqlalchemy/sql/compiler.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'lib/sqlalchemy/sql') 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() -- cgit v1.2.1