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
1825
March 06, 2021 02:44AM
732
March 06, 2021 12:28PM
764
March 06, 2021 03:24PM
624
March 06, 2021 04:05PM
650
March 06, 2021 04:34PM
628
March 07, 2021 10:34AM
580
March 15, 2021 09:24AM
617
March 15, 2021 07:53AM
755
March 17, 2021 03:37PM
607
March 17, 2021 04:23PM
Re: Mysql 8.0 crash while calling stored proc
627
March 17, 2021 11:43PM
645
March 18, 2021 08:51AM
778
April 09, 2021 01:22AM
567
April 30, 2021 04:07AM
546
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.