Re: Boolean variables...

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Boolean variables...
Дата
Msg-id 20494.1062127931@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Boolean variables...  (Cath Lawrence <Cath.Lawrence@anu.edu.au>)
Список pgsql-novice
Cath Lawrence <Cath.Lawrence@anu.edu.au> writes:
> If I try to set a boolean to 'f' it works; if I set it to 't' it
> actually sets it to false...

Not here:

regression=# create table t1 (f1 boolean);
CREATE TABLE
regression=# insert into t1 values('f');
INSERT 1201117 1
regression=# insert into t1 values('t');
INSERT 1201118 1
regression=# select * from t1;
 f1
----
 f
 t
(2 rows)


            regards, tom lane

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

Предыдущее
От: Nabil Sayegh
Дата:
Сообщение: Re: select items, and max id
Следующее
От: Nabil Sayegh
Дата:
Сообщение: "PostgreSQL now has working, tested, scalable replication!"