Re: Where is the char and varchar length in pg_catalog for function input variables

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: Where is the char and varchar length in pg_catalog for function input variables
Дата
Msg-id 504777850200002500049EE0@gw.wicourts.gov
обсуждение исходный текст
Ответ на Re: Where is the char and varchar length in pg_catalog for function input variables  (jam3 <jamorton3@gmail.com>)
Список pgsql-general
jam3 <jamorton3@gmail.com> wrote:

> create or replace function test1(c1 char(10), c2 varchar(20))

> Just showing that it does indeed not use the length in at all

Correct.  That is functioning as intended and is not likely to
change any time soon.

You might consider using domains:

drop function if exists test1(c1 t1, c2 t2);
drop table if exists test_table;
drop domain if exists t1;
drop domain if exists t2;

create domain t1 varchar(10);
create domain t2 varchar(20);
create table test_table
(
  column1 char(20),
  column2 varchar(40)
) without oids;
create or replace function test1(c1 t1, c2 t2)
returns void as
$$
BEGIN
insert into test_table values ($1, $2);
END
$$
language plpgsql;
select
test1('12345678900123456789',
      'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789ABCD');
select * from test_table;

-Kevin


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

Предыдущее
От: jam3
Дата:
Сообщение: Re: Where is the char and varchar length in pg_catalog for function input variables
Следующее
От: "David Johnston"
Дата:
Сообщение: Re: Re: Where is the char and varchar length in pg_catalog for function input variables