Received: from localhost (postgresql.org [64.49.215.8]) by postgresql.org (Postfix) with ESMTP id D3CC5475A05 for ; Wed, 21 Aug 2002 12:09:26 -0400 (EDT) Received: from candle.pha.pa.us (216-55-132-35.dsl.san-diego.abac.net [216.55.132.35]) by postgresql.org (Postfix) with ESMTP id 98B29474E4E for ; Wed, 21 Aug 2002 12:09:25 -0400 (EDT) Received: (from pgman@localhost) by candle.pha.pa.us (8.11.6/8.10.1) id g7LG9J026551; Wed, 21 Aug 2002 12:09:19 -0400 (EDT) From: Bruce Momjian Message-Id: <200208211609.g7LG9J026551@candle.pha.pa.us> Subject: Re: LIKE ESCAPE doc fix (was Re: [DOCS] functions-matching In-Reply-To: <3D632F66.60905@joeconway.com> To: Joe Conway Date: Wed, 21 Aug 2002 12:09:19 -0400 (EDT) Cc: Tom Lane , PostgreSQL Patches X-Mailer: ELM [version 2.4ME+ PL99 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS new-20020517 X-Archive-Number: 200208/398 X-Sequence-Number: 4934 Your patch has been added to the PostgreSQL unapplied patches list at: http://candle.pha.pa.us/cgi-bin/pgpatches I will try to apply it within the next 48 hours. --------------------------------------------------------------------------- Joe Conway wrote: > Tom Lane wrote: > > Joe Conway writes: > > > >>7.2.1 docs: > >>http://www.postgresql.org/idocs/index.php?functions-matching.html#FUNCTIONS-LIKE > > > > > >>" It's also possible to select no escape character by writing ESCAPE ''. > >>In this case there is no way to turn off the special meaning of > >>underscore and percent signs in the pattern." > > > > > >>7.3 development docs: > >>http://developer.postgresql.org/docs/postgres/functions-matching.html#FUNCTIONS-LIKE > > > > > >>" It's also possible to select no escape character by writing ESCAPE ''. > >>This effectively disables the escape mechanism and turns off the special > >>meaning of underscore and percent signs in the pattern." > > > > > >>I think the former is still correct, isn't it? > > > > > > Yes, as is easily proven by experiment: > > > > regression=# select 'foo' LIKE 'f%'; > > ?column? > > ---------- > > t > > (1 row) > > > > regression=# select 'foo' LIKE 'f%' escape ''; > > ?column? > > ---------- > > t > > (1 row) > > > > Who put that change in? > > Here's a small doc patch to fix this issue. Please apply. > > Thanks, > > Joe > > Index: doc/src/sgml/func.sgml > =================================================================== > RCS file: /opt/src/cvs/pgsql-server/doc/src/sgml/func.sgml,v > retrieving revision 1.114 > diff -c -r1.114 func.sgml > *** doc/src/sgml/func.sgml 21 Aug 2002 05:25:49 -0000 1.114 > --- doc/src/sgml/func.sgml 21 Aug 2002 05:42:49 -0000 > *************** > *** 2238,2246 **** > > It's also possible to select no escape character by writing > ESCAPE ''. This effectively disables the > ! escape mechanism and > ! turns off the special meaning of underscore and percent signs in > ! the pattern. > > > > --- 2238,2245 ---- > > It's also possible to select no escape character by writing > ESCAPE ''. This effectively disables the > ! escape mechanism, which makes it impossible to turn off the > ! special meaning of underscore and percent signs in the pattern. > > > > > ---------------------------(end of broadcast)--------------------------- > TIP 2: you can get off all lists at once with the unregister command > (send "unregister YourEmailAddressHere" to majordomo@postgresql.org) -- Bruce Momjian | http://candle.pha.pa.us pgman@candle.pha.pa.us | (610) 359-1001 + If your life is a hard drive, | 13 Roberts Road + Christ can be your backup. | Newtown Square, Pennsylvania 19073