ERROR: record "old" has not yet been assigned

I'm having difficulty with this simple trigger. My goal is to check before inserting a new register, if there is a register with the same contents of the field, which is "tag_id". If the NEW tag_id is the same tag_id tag of any register in my "Coordenadas" table, then it is updated; if not, it inserts a new one. When I try to insert sth, I get an error:

ERROR:  record "old" is not assigned yet
DETAIL:  The tuple structure of a not-yet-assigned record is indeterminate.
CONTEXT:  PL/pgSQL function verifica_coo() line 7 at IF

I have this table:

    CREATE TABLE public.coordenadas
    (
      id bigint NOT NULL,
      pos_data timestamp without time zone,
      pos_latitude double precision,
      pos_longitude double precision,
      tag_id bigint NOT NULL,
      gado_id bigint NOT NULL,
      CONSTRAINT coordenadas_pkey PRIMARY KEY (id),
      CONSTRAINT coordenadas_gado_id_fkey FOREIGN KEY (gado_id)
      REFERENCES public.gado (gado_id) MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION,
      CONSTRAINT fkj14dwmpa6g037ardymqc2q4lj FOREIGN KEY (tag_id)
      REFERENCES public.tag (tag_id) MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION,
      CONSTRAINT fktawrw6tlliq4ace5p7io87c5p FOREIGN KEY (gado_id)
      REFERENCES public.gado (gado_id) MATCH SIMPLE
      ON UPDATE NO ACTION ON DELETE NO ACTION
)

This trigger:

CREATE TRIGGER verifica_coo
BEFORE INSERT OR UPDATE ON coordenadas
   FOR EACH ROW EXECUTE PROCEDURE verifica_coo();

This function:

CREATE OR REPLACE FUNCTION public.verifica_coo()
  RETURNS trigger AS $verifica_coo$

    BEGIN
        --
        -- Verifica se é para inserir ou atualizar os dados na tabela.
        --
       IF (NEW.tag_id != OLD.tag_id ) THEN

            INSERT INTO coordenadas (pos_data,pos_latitude,pos_longitude,tag_id,gado_id) 
            VALUES (NEW.pos_data,NEW.pos_latitude,NEW.pos_longitude,NEW.tag_id,NEW.gado_id);
        ELSE 
            UPDATE coordenadas SET pos_data = NEW.pos_data, pos_latitude = NEW.pos_latitude, pos_longitude = NEW.pos_longitude WHERE tag_id = NEW.tag_id;
        END IF;
            RETURN NEW;

    END;
$verifica_coo$
  LANGUAGE plpgsql VOLATILE
  COST 100;
ALTER FUNCTION public.verifica_coo()
  OWNER TO postgres;

My insert:

INSERT INTO coordenadas (pos_data,pos_latitude,pos_longitude,tag_id,gado_id) VALUES ('21/08/2016', '-23.563844' ,'-46.322525', '2','2');
+4
source share
1 answer

This is because:

OLD

RECORD; , UPDATE/DELETE . INSERT.

, , . TG_OP

IF TG_OP = 'UPDATE' THEN
    -- some code involving OLD 
ELSE 
    -- other code
+10

Source: https://habr.com/ru/post/1651964/


All Articles