Eu fiz o exercício
USE SUCOS_VENDAS;
DROP PROCEDURE `sp_Exerc01`;
delimiter %
create procedure `sp_Exerc01`()
begin
DECLARE cliente CHAR(10) DEFAULT 'João';
DECLARE idade INT DEFAULT 10;
DECLARE dataNascimento DATE DEFAULT '2007-10-01';
DECLARE custo FLOAT DEFAULT 10.23;
SELECT cliente, idade, dataNascimento, custo;
end%
delimiter ;
Porém na hora de chamar a função com o Call
O Workbench fica dando esse erro: Error Code: 1436. Thread stack overrun: 13928 bytes used of a 131072 byte stack, and 160000 bytes needed. Use 'mysqld --thread_stack=#' to specify a bigger stack. Como posso resolver esse erro?