﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11898	oracle quote_name bug	steveed	nobody	"In the below snippet of code from db/backends/oracle/base.py it appears that regardless of the how the name is sent in it is returned in uppercase. If believe line 155 should be 'return name'

Thanks,
Stephen

{{{

147    def quote_name(self, name):
148        # SQL92 requires delimited (quoted) names to be case-sensitive.  When
149        # not quoted, Oracle has case-insensitive behavior for identifiers, but
150        # always defaults to uppercase.
151        # We simplify things by making Oracle identifiers always uppercase.
152        if not name.startswith('""') and not name.endswith('""'):
153            name = '""%s""' % util.truncate_name(name.upper(),
154                                               self.max_name_length())
155        return name.upper()

}}}"		closed	Database layer (models, ORM)	1.1		wontfix	oracle, quote_name	Erin Kelly Matt Boersma	Unreviewed	0	0	0	0	0	0
