Re: Column lenght

Поиск
Список
Период
Сортировка
От Dave Page
Тема Re: Column lenght
Дата
Msg-id AA30E7BCCA5C1D4E88A231900F8325C00B5B@dogbert.vale-housing.co.uk
обсуждение исходный текст
Ответ на Column lenght  (Jean-Michel POURE <jm.poure@freesurf.fr>)
Список pgadmin-hackers

> -----Original Message-----
> From: Jean-Michel POURE [mailto:jm.poure@freesurf.fr]
> Sent: 02 October 2001 16:34
> To: pgadmin-hackers@postgresql.org
> Subject: [pgadmin-hackers] Column lenght
>
>
> Hello,
>
> Try the following query:
> create table essai(
>        ID char(12) not null,
>     primary key (id)
>    );
>
> The definition pane displays no lenght:
> CREATE TABLE "essai" (
>    "id" bpchar NOT NULL,
>    CONSTRAINT "essai_pkey" PRIMARY KEY ("id")
> );
>
> The property editor show the correct column lenght.

This should be fixed now. Char columns get converted to bpchar in
PostgreSQL, but you can't specify a length for bpchar!

All columns will now display correctly as char(n).

Regards, Dave.

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

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: Table modification
Следующее
От: Jean-Michel POURE
Дата:
Сообщение: Re: Column lenght