Re: [HACKERS] char types gone.

From: Zeugswetter Andreas <andreas(dot)zeugswetter(at)telecom(dot)at>
To: "'Bruce Momjian'" <maillist(at)candle(dot)pha(dot)pa(dot)us>
Cc: "'pgsql-hackers(at)hub(dot)org'" <pgsql-hackers(at)hub(dot)org>
Subject: Re: [HACKERS] char types gone.
Date: 1998-03-25 09:01:33
Message-ID: 01BD57D5.010B24C0@pc9358.sd.spardat.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Bruce wrote:
>>
>> You seem to be getting me wrong, right from the start. I appreciate your work on removing
>> char2-char16. I also think it is the correct step. You have the hackers behind you, the discussion was
>> about 2 - 3 weeks ago. I was part of it. There are three things that will need documentation:
>> 1. the replacement for char16 is char(16)
>> 2. char(16) gives and ignores trailing blanks
>
>I don't think this is true.

Hmm ? I am puzzeled. Of course this is true, it has to be, it is standard:

test=> create table chartest (a char(16));
test=> insert into chartest values ('Andreas');
test=> select a || '<' from chartest;
?column?
-----------------
Andreas <
(1 row)
test=> select a || '<' from chartest where a='Andreas';
?column?
-----------------
Andreas <
(1 row)

Andreas

Browse pgsql-hackers by date

  From Date Subject
Next Message Zeugswetter Andreas 1998-03-25 09:32:04 Re: [HACKERS] Begin statement again
Previous Message Vadim B. Mikheev 1998-03-25 08:52:04 Re: [HACKERS] Feature: output index name in explain ...