Re: Unquoted column names fold to lower case

From: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>
To: Dev Kumkar <devdas(dot)kumkar(at)gmail(dot)com>
Cc: Thomas Kellerer <spam_eater(at)gmx(dot)net>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Unquoted column names fold to lower case
Date: 2013-07-03 19:08:31
Message-ID: 20130703190831.GG3592@eldon.alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Dev Kumkar escribió:

> But what I am asking here is if an alias name is provided be it upper case,
> lower case, or a mix then shouldn't it be preserved as as it is given. All
> this talk is when alias names are unquoted, when quoted then its standard
> behavior as seen in other databases.

Aliases are treated just like any other identifier. The downcasing
happens in the lexer (src/backend/parser/scan.l), which is totally
unaware of the context in which this is happening; so there's no way to
tweak the downcasing behavior for only aliases and not other
identifiers.

--
Álvaro Herrera http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Dev Kumkar 2013-07-03 19:42:44 Re: Unquoted column names fold to lower case
Previous Message Dev Kumkar 2013-07-03 18:49:20 Re: Unquoted column names fold to lower case