pgsql: Fix quote_ident to use quote_identifier rather than its own, not

From: tgl(at)svr1(dot)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix quote_ident to use quote_identifier rather than its own, not
Date: 2005-03-21 16:29:31
Message-ID: 20050321162931.D6A20568E2@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Fix quote_ident to use quote_identifier rather than its own, not quite
up-to-speed logic; in particular this will cause it to quote names that
match keywords. Remove unnecessary multibyte cruft from quote_literal
(all backend-internal encodings are 8-bit-safe).

Tags:
----
REL8_0_STABLE

Modified Files:
--------------
pgsql/src/backend/utils/adt:
quote.c (r1.14 -> r1.14.4.1)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/quote.c.diff?r1=1.14&r2=1.14.4.1)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2005-03-22 06:17:03 pgsql: Create a routine PageIndexMultiDelete() that replaces a loop
Previous Message Tom Lane 2005-03-21 16:29:20 pgsql: Fix quote_ident to use quote_identifier rather than its own, not