Fixed #4827 -- Fixed a problem when converting Unicode table names to upper-case in Oracle backend. Based on a patch from timchen119@gmail.com.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5852 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-08-11 11:11:16 +00:00
parent 1d4a0054e3
commit 01906de5c2
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ def _get_installed_models(table_list):
for model in models.get_models(app):
all_models.append(model)
if backend.uses_case_insensitive_names:
converter = str.upper
converter = lambda x: x.upper()
else:
converter = lambda x: x
return set([m for m in all_models if converter(m._meta.db_table) in map(converter, table_list)])