Re: WARNING: column "footype" has type "unknown"

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: WARNING: column "footype" has type "unknown"
Дата
Msg-id 25817.1098919491@sss.pgh.pa.us
обсуждение исходный текст
Ответ на WARNING: column "footype" has type "unknown"  ("Ed L." <pgsql@bluepolka.net>)
Ответы Re: WARNING: column "footype" has type "unknown"  ("Ed L." <pgsql@bluepolka.net>)
Список pgsql-general
"Ed L." <pgsql@bluepolka.net> writes:
> On 7.4.6, is there any problem with defining one column of a view to be a
> string literal?  For example ...

> $ psql -c "create view fooview as select 'bar' as footype"
> WARNING:  column "footype" has type "unknown"
> DETAIL:  Proceeding with relation creation anyway.
> CREATE VIEW

> Or is this warning just noise in this case?

Depending on what you expect to do with the view, you'd probably be
better off casting the literal to some specific type, perhaps text
or varchar.  An example of what you won't be able to do:

regression=# select distinct * from fooview;
ERROR:  failed to find conversion function from "unknown" to text

I think there was some discussion in the past of forcing the view column
to text type, but evidently nothing's been done about it yet.

            regards, tom lane

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

Предыдущее
От: "Ed L."
Дата:
Сообщение: WARNING: column "footype" has type "unknown"
Следующее
От: "Ed L."
Дата:
Сообщение: Re: WARNING: column "footype" has type "unknown"