Skip to content

Commit

Permalink
Fix #558
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Aug 17, 2020
1 parent 2978909 commit c9e92be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cairis/sql/procs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30990,7 +30990,7 @@ begin
declare refId int;
declare isConflict int default 0;
declare done int default 0;
declare pcCursor cursor for select pc.persona_id from persona_characteristic pc, persona_characteristic_document pcd where pc.id = pcd.characteristic_id and pcd.reference_id = refId;
declare pcCursor cursor for select pc.persona_id from persona_characteristic pc, persona_characteristic_document pcd, persona_characteristic_synopsis pcs where pc.id = pcd.characteristic_id and pcd.reference_id = refId and pcs.characteristic_id = pc.id;
declare continue handler for not found set done = 1;

select id into pId from persona where name = pName limit 1;
Expand Down

0 comments on commit c9e92be

Please sign in to comment.