diff --git a/mysql-test/suite/compat/oracle/r/sp.result b/mysql-test/suite/compat/oracle/r/sp.result index c1f1b1c415da0..17d6837f85f68 100644 --- a/mysql-test/suite/compat/oracle/r/sp.result +++ b/mysql-test/suite/compat/oracle/r/sp.result @@ -924,24 +924,6 @@ END LOOP la; RETURN total; END; / -SHOW FUNCTION CODE f1; -Pos Instruction -0 set total@3 0 -1 set ia@4 1 -2 set [upper_bound]@5 a@0 -3 jump_if_not 15(15) (ia@4 <= [upper_bound]@5) -4 set total@3 (total@3 + 1000) -5 set ib@6 1 -6 jump_if_not 13(13) (ib@6 <= b@1) -7 jump_if_not 10(10) (ib@6 > blim@2) -8 set ia@4 (ia@4 + 1) -9 jump 3 -10 set ib@6 (ib@6 + 1) -11 set total@3 (total@3 + 1) -12 jump 6 -13 set ia@4 (ia@4 + 1) -14 jump 3 -15 freturn 3 total@3 SELECT f1(3,3,0), f1(3,3,1), f1(3,3,2), f1(3,3,3), f1(3,3,4) FROM DUAL; f1(3,3,0) f1(3,3,1) f1(3,3,2) f1(3,3,3) f1(3,3,4) 3000 3003 3006 3009 3009 diff --git a/mysql-test/suite/compat/oracle/t/sp.test b/mysql-test/suite/compat/oracle/t/sp.test index 8ae001bf7d118..3e43741238eda 100644 --- a/mysql-test/suite/compat/oracle/t/sp.test +++ b/mysql-test/suite/compat/oracle/t/sp.test @@ -993,7 +993,6 @@ BEGIN END; / DELIMITER ;/ -SHOW FUNCTION CODE f1; SELECT f1(3,3,0), f1(3,3,1), f1(3,3,2), f1(3,3,3), f1(3,3,4) FROM DUAL; DROP FUNCTION f1;