EVOLUTION-MANAGER
Edit File: truncate_row_count.result
drop table if exists t; create table t (a int, b int, primary key (a)) engine=tokudb; insert into t values (1,2),(2,4),(3,8); select * from t; a b 1 2 2 4 3 8 select TABLE_ROWS from information_schema.tables where table_schema='test' and table_name='t'; TABLE_ROWS 3 truncate table t; select * from t; a b select TABLE_ROWS from information_schema.tables where table_schema='test' and table_name='t'; TABLE_ROWS 0 drop table t;