Skip to content

Commit

Permalink
Fix #637
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Dec 17, 2021
1 parent f7b8219 commit 23ed166
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cairis/sql/procs.sql
Original file line number Diff line number Diff line change
Expand Up @@ -31287,6 +31287,10 @@ begin
declare ugCursor cursor for select user_goal_id from user_system_goal_link where system_goal_id = goalId;
declare continue handler for not found set done = 1;

drop table if exists temp_gid;
create temporary table temp_gid (id int not null, gscore int not null);


open ugCursor;
ug_loop: loop
fetch ugCursor into ugId;
Expand Down

0 comments on commit 23ed166

Please sign in to comment.