Casting Integer to Boolean in assignment

Поиск
Список
Период
Сортировка
От Alexandre GRAIL
Тема Casting Integer to Boolean in assignment
Дата
Msg-id d8fe822a-ac75-5763-00b3-273f11394fc5@augure-ng.fr
обсуждение исходный текст
Ответы Re: Casting Integer to Boolean in assignment  (Geoff Winkless <pgsqladmin@geoff.dj>)
Re: Casting Integer to Boolean in assignment  (Ron <ronljohnsonjr@gmail.com>)
Re: Casting Integer to Boolean in assignment  ("David G. Johnston" <david.g.johnston@gmail.com>)
Re: Casting Integer to Boolean in assignment  (Adrian Klaver <adrian.klaver@aklaver.com>)
Список pgsql-general
Hello the list,

Maybe this question has been debated before (I didn't find anything 
helpful) but :

Why the default is to throw an error when casting Integer to Boolean in 
assignment, and accepting it everywhere else ?

So you can type :

postgres=# select 1::boolean;
  bool
------
  t
(1 row)

or

postgres=# select 0::boolean;
  bool
------
  f
(1 row)


But you *cannot* use 1 or 0 as valid input for boolean type when 
inserting or updating :

test=# CREATE TABLE test1 (a boolean);
CREATE TABLE
test=# INSERT INTO test1 VALUES (1);
ERROR:  column "a" is of type boolean but expression is of type integer
LINE 1: INSERT INTO test1 VALUES (1);
                                   ^
HINT:  You will need to rewrite or cast the expression.


This behavior cannot be changed, as this cast is hard coded with 
"Implicit?=no".

And added to this weirdness is the fact that '1' or '0' (with quote) is OK.

So is there a reason to forbid 0 and 1 as valid boolean, without 
explicit cast ?

Thanks!




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

Предыдущее
От: Ron
Дата:
Сообщение: [pgbackrest] Expiring the last backup?
Следующее
От: Geoff Winkless
Дата:
Сообщение: Re: Casting Integer to Boolean in assignment