Bug on CHARACTER(n) ?

From: Stefano Reksten <sreksten(at)sdb(dot)it>
To: pgsql-bugs(at)postgresql(dot)org
Subject: Bug on CHARACTER(n) ?
Date: 2005-11-28 16:49:02
Message-ID: 6.1.2.0.0.20051128174409.030e4490@pop01.sdb.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hello list,
maybe I am missing something. Look at this:

CREATE TABLE test (name character(10));

INSERT INTO test VALUES ('test');

SELECT '<' || name || '>' FROM test;

?column?
----------
<test>

SELECT length(name), name from test;
length | name
--------+------------
4 | test

Should not a char(10) insert 6 padding spaces? Or am I missing something
like an update in the SQL standard?
Sorry if this is an already known issue, I had no time lately to check the
bugs mailing list.

Ciao,
Stefano

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Pawel Bernat 2005-11-28 16:57:47 Re: Bug on CHARACTER(n) ?
Previous Message Tom Lane 2005-11-28 15:20:57 Re: segfault of autovacuum process during restore - coredumps included