pgplsql (no entiendo todavia)

From: "Jorge Alejandro Adell" <jorgeadell(at)gmail(dot)com>
To: pgsql-es-ayuda(at)postgresql(dot)org
Subject: pgplsql (no entiendo todavia)
Date: 2006-07-02 02:39:43
Message-ID: 3ada24480607011939v79f31943ve8682d96ae7afe05@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Estoy con mis primeros pasos con postgres y decidi comenzar por PGPLSQL
escribi el siguiente archivo llamado test.sql

CREATE or replace FUNCTION funcion() returns integer AS $$
declare
x := 33;
begin
raise notice 'aprendiendo plpgsql %', 34;
return 1;
end;
$$ LANGUAGE plpgsql;

ingreso a la base de datos test
psql test
create language plpgsql;
\i test.sql
y me aparece el siguiente error.

psql:b.sql:8: ERROR: invalid type name ""
CONTEXT: compile of PL/pgSQL function "funcion" near line 3

Si comento
declare
x := 33;
anda todo y no entiendo que es todavia.

Gracias.

Responses

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Miguel Angel 2006-07-02 03:08:22 Re: pgplsql (no entiendo todavia)
Previous Message Linder Poclaba 2006-07-01 14:50:26 Re: Activacion de trigger a una hora determinada