[HACKERS] SIMILAR TO bug?

2009-02-18 Thread David Fetter
Folks,

Perhaps I've misunderstood this, but in PostgreSQL 8.3.5, I get
disparate results from ~ and SIMILAR TO.  For example:

This gives an unexpected result:

davidfet...@davidfetter=# SELECT 'abc' SIMILAR TO '^[a]';
 ?column? 
--
 f
(1 row)

This one is what I expected.

davidfet...@davidfetter=# SELECT 'abc' ~ '^[a]';
 ?column? 
--
 t
(1 row)

Did I misunderstand what SIMILAR TO does, or...?

Cheers,
David.
-- 
David Fetter da...@fetter.org http://fetter.org/
Phone: +1 415 235 3778  AIM: dfetter666  Yahoo!: dfetter
Skype: davidfetter  XMPP: david.fet...@gmail.com

Remember to vote!
Consider donating to Postgres: http://www.postgresql.org/about/donate

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] SIMILAR TO bug?

2009-02-18 Thread Alvaro Herrera
David Fetter wrote:
 Folks,
 
 Perhaps I've misunderstood this, but in PostgreSQL 8.3.5, I get
 disparate results from ~ and SIMILAR TO.  For example:

Did you read the docs?  ^ is not an anchor.

-- 
Alvaro Herrerahttp://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] SIMILAR TO bug?

2009-02-18 Thread Peter Eisentraut

David Fetter wrote:

Folks,

Perhaps I've misunderstood this, but in PostgreSQL 8.3.5, I get
disparate results from ~ and SIMILAR TO.  For example:

This gives an unexpected result:

davidfet...@davidfetter=# SELECT 'abc' SIMILAR TO '^[a]';
 ?column? 
--

 f
(1 row)

This one is what I expected.

davidfet...@davidfetter=# SELECT 'abc' ~ '^[a]';
 ?column? 
--

 t
(1 row)

Did I misunderstand what SIMILAR TO does, or...?


Well, SIMILAR TO is not the same thing as ~.  For example, ^ is not a 
special character in its pattern language.


--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers