-: 0:Source:./t/cov_gcov_if.sql -: 0:Graph:cov_gcov_if.gcno -: 0:Data:cov_gcov_if.gcda -: 0:Runs:0 -: 0:Programs:1 -: 1:delimiter ;; -: 2: -: 3:#line 4 function test.fct_if called 1 returned 100% blocks executed 67% -: 4:create function fct_if(x char(20), y char(20)) -: 5:returns char(20) -: 6:begin 1: 7: declare result char(20); 1: 8: if (x < y) -: 9: then 1: 10: set result = "lower"; -: 11: else #####: 12: set result = "not lower"; -: 13: end if; 1: 14: return result; -: 15:end ;; -: 16: