Re: Mysql 8.0 crash while calling stored proc
Creating a table is not giving any error.
Even a simple procedure/function like given below crashes MySQL when calling it:
CREATE DEFINER=`root`@`localhost` FUNCTION `test`(param1 int) RETURNS int
DETERMINISTIC
BEGIN
DECLARE var1 INTEGER;
set var1 = param1 + 100;
RETURN var1;
END
Note: But if this function is created without any arguments it is possible to call it and it returns the result.
Subject
Views
Written By
Posted
1644
March 06, 2021 02:44AM
659
March 06, 2021 12:28PM
682
March 06, 2021 03:24PM
563
March 06, 2021 04:05PM
585
March 06, 2021 04:34PM
564
March 07, 2021 10:34AM
519
March 15, 2021 09:24AM
550
March 15, 2021 07:53AM
684
March 17, 2021 03:37PM
545
March 17, 2021 04:23PM
Re: Mysql 8.0 crash while calling stored proc
562
March 17, 2021 11:43PM
577
March 18, 2021 08:51AM
695
April 09, 2021 01:22AM
504
April 30, 2021 04:07AM
478
April 30, 2021 04:08AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.