summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql/compiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/sql/compiler.py')
-rw-r--r--lib/sqlalchemy/sql/compiler.py12
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()