mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Getting rid of lots of memory leaks (but not quite all of them yet,
some will go away when temporary code is replaced). mysql-test/r/sp.result: Drop db before creating. mysql-test/t/sp.test: Drop db before creating.
This commit is contained in:
@ -20,6 +20,7 @@ delete from t1;
|
||||
drop procedure foo42;
|
||||
create procedure u()
|
||||
use sptmp;
|
||||
drop database if exists sptmp;
|
||||
create database sptmp;
|
||||
use test;
|
||||
call u();
|
||||
|
@ -35,6 +35,9 @@ drop procedure foo42;
|
||||
create procedure u()
|
||||
use sptmp;
|
||||
|
||||
--disable_warnings
|
||||
drop database if exists sptmp;
|
||||
--enable_warnings
|
||||
create database sptmp;
|
||||
use test;
|
||||
call u();
|
||||
|
Reference in New Issue
Block a user