Re: [QUESTIONS] backend dying on insert on 6.3, not dying on 6.2.1 p7

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [QUESTIONS] backend dying on insert on 6.3, not dying on 6.2.1 p7
Дата
Msg-id 199803250128.UAA22972@candle.pha.pa.us
обсуждение исходный текст
Список pgsql-hackers
> I've seen this myself on Solaris.  If your default value as specified
> in the CREATE TABLE statement is not exactly as long as the declared
> width of the field, the backend dies with an assertion as soon as you
> INSERT a record that needs to use the default.
>
> CREATE TABLE foo
> (
>   i  INT,
>   a  CHAR(4) DEFAULT 'x'
> );
>
> INSERT INTO a (i) VALUES (23);
>
> Will blow up the backend.
>
> CREATE TABLE foo
> (
>   i INT,
>   a CHAR(4) DEFAULT 'x   '
> );
>

This does not surprise me entirely, especially when char() fails but
varchar() and text work.  It has to do with the way we handle char().
Can someone familiar with default handling checking into this.

--
Bruce Momjian                          |  830 Blythe Avenue
maillist@candle.pha.pa.us              |  Drexel Hill, Pennsylvania 19026
  +  If your life is a hard drive,     |  (610) 353-9879(w)
  +  Christ can be your backup.        |  (610) 853-3000(h)

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Michal Mosiewicz
Дата:
Сообщение: Patch 6.3-6.3.1 wrong?
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: AW: [HACKERS] Re: PostgreSQL reference manual