Re: mssql migration and boolean to integer problems

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: mssql migration and boolean to integer problems
Дата
Msg-id 22108.1197912244@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: mssql migration and boolean to integer problems  ("robert lazarski" <robertlazarski@gmail.com>)
Ответы Re: mssql migration and boolean to integer problems  ("robert lazarski" <robertlazarski@gmail.com>)
Список pgsql-general
"robert lazarski" <robertlazarski@gmail.com> writes:
> Is there any way to get the above insert to work as is, via a function
> or some other way? I tried the function of another poster but it seems
> there is already a cast built in for 8.1.9 for integer to boolean, and
> it didn't work for me on the above insert.

You could mark the built-in cast as assignment-only (I wouldn't
recommend setting it to implicit, as it's not clear what cases
that might break).

d1=# create table foo (f1 bool);
CREATE TABLE
d1=# insert into foo values(1);
ERROR:  column "f1" is of type boolean but expression is of type integer
HINT:  You will need to rewrite or cast the expression.
d1=# update pg_cast set castcontext = 'a' where castsource = 'int'::regtype
d1-# and casttarget = 'bool'::regtype;
UPDATE 1
d1=# insert into foo values(1);
INSERT 0 1

Unfortunately this is something you'd have to do over after any database
reload, because pg_dump won't preserve changes to the definitions of
built-in objects.

            regards, tom lane

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

Предыдущее
От: marcelo Cortez
Дата:
Сообщение: postgres8.3beta encodding problem?
Следующее
От: "Heiner Vega"
Дата:
Сообщение: Re: postgres writer process growing up too much