split_part bug - Mailing list pgsql-hackers

From John Hansen
Subject split_part bug
Date
Msg-id 1100727650.32413.4.camel@localhost.localdomain
Whole thread Raw
Responses Re: split_part bug  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
PostgreSQL 8.0b4 as released.

select split_part('a b c d e f g h i j k l m n o p q r s t u v w x y
z',' ',1);
select split_part('a b c d e f g h i j k l m n o p q r s t u v w x y
z',' ',2);
select split_part('a b c d e f g h i j k l m n o p q r s t u v w x y
z',' ',3);
select split_part('a b c d e f g h i j k l m n o p q r s t u v w x y
z',' ',4);

should return a b c, and d
returns a, null, null, null

select split_part('a b c d e f g h i j k l m n o p q r s t u v w x y
z',' ',2);
select split_part('a b c d e f g h i j k l m n o p q r s t u v w x y
z',' ',3);
select split_part('a b c d e f g h i j k l m n o p q r s t u v w x y
z',' ',4);

should return b c, and d
returns b, c, null

... John



pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: ambiguous column names in subqueries
Next
From: Oliver Jowett
Date:
Subject: Re: ambiguous column names in subqueries