Re: How to use the 'char() ' as data type and a function name in the same time.

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: How to use the 'char() ' as data type and a function name in the same time.
Дата
Msg-id 1403536014.12781.YahooMailNeo@web122301.mail.ne1.yahoo.com
обсуждение исходный текст
Ответ на How to use the 'char() ' as data type and a function name in the same time.  (rohtodeveloper <rohtodeveloper@outlook.com>)
Список pgsql-hackers
rohtodeveloper <rohtodeveloper@outlook.com> wrote:

> When I use the  pg_catalog.char(integer) function  in the
> postgres, I can only use it like these:
> select pg_catalog.char(65);  select "char"(65);
>
> But I want to use the function by the following  way.
> select char(1);

Try using the chr() function.

What you are running into is a result of the fact that besides the
char datatype, PostgreSQL has a "char" datatype, with a completely
different implementation.  While that may not have been the best
decision, there is enough working code that depends on both of
these types that it is unlikely to change.

http://www.postgresql.org/docs/current/interactive/datatype-character.html

Be careful, though; I would not generally recommend the use of
either char or "char" in application tables or code.  The char type
is only included for standard compliance, and has surprising
semantics and generally poorer performance than the alternatives.
The "char" type is only intended for use in the system catalogs; if
you are considering using it elsewhere, you should consider an enum
instead.

--
Kevin Grittner
EDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company



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

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: replication commands and log_statements
Следующее
От: Robert Haas
Дата:
Сообщение: Re: JSON and Postgres Variable Queries