summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/mysql.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-10-02 15:49:12 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-10-02 15:49:12 +0000
commitee2247f78f2c0d7420c179a8a8eed144188e958b (patch)
tree52a2a4c9879d2cacdeff346f90625948d64b08ef /lib/sqlalchemy/databases/mysql.py
parent35ff8ed25e8a03b36461fbe09d0530bb1164ce82 (diff)
downloadsqlalchemy-ee2247f78f2c0d7420c179a8a8eed144188e958b.tar.gz
removed unused _fold_identifier_case method
Diffstat (limited to 'lib/sqlalchemy/databases/mysql.py')
-rw-r--r--lib/sqlalchemy/databases/mysql.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/sqlalchemy/databases/mysql.py b/lib/sqlalchemy/databases/mysql.py
index c0b1179a3..50923fe92 100644
--- a/lib/sqlalchemy/databases/mysql.py
+++ b/lib/sqlalchemy/databases/mysql.py
@@ -2477,16 +2477,6 @@ class _MySQLIdentifierPreparer(compiler.IdentifierPreparer):
def __init__(self, dialect, **kw):
super(_MySQLIdentifierPreparer, self).__init__(dialect, **kw)
- def _fold_identifier_case(self, value):
- # TODO: determine MySQL's case folding rules
- #
- # For compatability with sql.text() issued statements, maybe it's best
- # to just leave things as-is. When lower_case_table_names > 0 it
- # looks a good idea to lc everything, but more importantly the casing
- # of all identifiers in an expression must be consistent. So for now,
- # just leave everything as-is.
- return value
-
def _quote_free_identifiers(self, *ids):
"""Unilaterally identifier-quote any number of strings."""