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
1308
March 06, 2021 02:44AM
497
March 06, 2021 12:28PM
514
March 06, 2021 03:24PM
411
March 06, 2021 04:05PM
439
March 06, 2021 04:34PM
429
March 07, 2021 10:34AM
391
March 15, 2021 09:24AM
398
March 15, 2021 07:53AM
517
March 17, 2021 03:37PM
398
March 17, 2021 04:23PM
Re: Mysql 8.0 crash while calling stored proc
420
March 17, 2021 11:43PM
427
March 18, 2021 08:51AM
451
April 09, 2021 01:22AM
359
April 30, 2021 04:07AM
342
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.