Truncation of char, varchar, bit, varbit types (fwd) - Mailing list pgsql-sql

From Peter Eisentraut
Subject Truncation of char, varchar, bit, varbit types (fwd)
Date
Msg-id Pine.LNX.4.30.0105200234090.758-100000@peter.localdomain
Whole thread Raw
List pgsql-sql
Implementation proposal as information for the user community.  Speak now
or...

---------- Forwarded message ----------
Date: Sat, 19 May 2001 12:33:40 +0200 (CEST)
From: Peter Eisentraut <peter_e@gmx.net>
To: PostgreSQL Development <pgsql-hackers@postgresql.org>
Subject: Truncation of char, varchar, bit, varbit types

I've sent this a few weeks ago and got support, I just wanted to issue the
final call.

SQL and Postgres differ in behaviour if the value of a char or varchar
type exceeds the declared length.  Postgres cuts off the value, SQL
requires to raise an error.

In particular, the compliant behaviour is:

create table test (a varchar(4));

insert into test values ('ok');
[ok]
insert into test values ('not ok');
ERROR:  value too long for type character varying(4)
insert into test values ('good    ');
[truncates spaces that are too long]

I think this behaviour is desirable over the old one because it makes the
char and varchar types useful in the first place.

For bit types there is, of course, no such extra rule for spaces.
However, SQL requires that for fixed-width bit strings, the input value
must have as many digits as the declared length of the string.  That is,

create table test (a bit(4));
insert into test values (b'101');

will fail.  I think that's reasonable, too, because it avoids the
endianness issues.

Unless there are objections, I will make this happen.

-- 
Peter Eisentraut   peter_e@gmx.net   http://funkturm.homeip.net/~peter



pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: [GENERAL] Create an empty record
Next
From: "Joe Conway"
Date:
Subject: Re: Truncation of char, varchar, bit, varbit types (fwd)