2
У меня есть эта функция:ошибка запроса при работе с PL/PgSQL массивы
create or replace function insert_aereo(aereo_type[]) returns text as $$
begin
return 'ok';
end
$$ language plpgsql;
и это тип параметра, который я создал:
create type aereo_type as (codice int, modello varchar, marca varchar);
Тогда я называю функцию:
select insert_aereo('{123, "ciao", "pippo"}');
, но я получаю эту ошибку:
ERROR: function insert_aereo(unknown) is not unique at character 8 HINT: Could not choose a best candidate function. You might need to add explicit type casts. STATEMENT: select insert_aereo('{123, "ciao", "pippo"}'); ERROR: function insert_aereo(unknown) is not unique LINE 1: select insert_aereo('{123, "ciao", "pippo"}'); ^ HINT: Could not choose a best candidate function. You might need to add explicit type casts.
Как это исправить? Что я делаю не так?