Commit 507da246 authored by Rich Prohaska's avatar Rich Prohaska

DB-718 test case for broken error handling in tokudb_fractal_tree_info info schema plugin

parent b7feee73
set default_storage_engine='tokudb';
drop table if exists t;
create table t (id int primary key);
begin;
insert into t values (1),(2);
select * from information_schema.tokudb_fractal_tree_info;
ERROR HY000: Unknown error -30994
commit;
drop table t;
# test DB-718, a crash caused by broken error handling in tokudb's fractal_tree_info information schema
source include/have_tokudb.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t;
enable_warnings;
create table t (id int primary key);
begin;
insert into t values (1),(2);
--error 34542
select * from information_schema.tokudb_fractal_tree_info;
commit;
drop table t;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment