Fixed #4678 -- Fixed table name matching during syncdb for pyscopg2 backend

(the psycopg backend was already correct). Patch from tailofthesun@gmail.com.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@5528 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Malcolm Tredinnick 2007-06-25 03:08:00 +00:00
parent a56a8dacf3
commit 14161dba6b
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ needs_datetime_string_cast = False
needs_upper_for_iops = False
supports_constraints = True
supports_tablespaces = False
uses_case_insensitive_names = True
uses_case_insensitive_names = False
def quote_name(name):
if name.startswith('"') and name.endswith('"'):