Skip to content

Commit

Permalink
Fix #593
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Dec 3, 2020
1 parent bd920c6 commit f73b6aa
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 @@ -6428,7 +6428,7 @@ begin
declare issueName varchar(1000);
declare currentEnvName varchar(50);
declare done int default 0;
declare issueCursor cursor for select environment_id,definition from goal_issue where goal_id = goalId and environment_id in (select environment_id from composite_environment where composite_environment_id = environmentId);
declare issueCursor cursor for select environment_id,issue from goal_issue where goal_id = goalId and environment_id in (select environment_id from composite_environment where composite_environment_id = environmentId);
declare continue handler for not found set done = 1;

select count(environment_id) into compositeCount from composite_environment where composite_environment_id = environmentId limit 1;
Expand Down

0 comments on commit f73b6aa

Please sign in to comment.