mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
c0f40d14cc
A lot of new tests to mysqltest Fixed bug with BDB tables and autocommit
11 lines
248 B
Text
11 lines
248 B
Text
#
|
|
# Test of truncate
|
|
#
|
|
create table t1 (a integer, b integer,c1 CHAR(10));
|
|
truncate t1;
|
|
select count(*) from t1;
|
|
insert into t1 values(1,2,"test");
|
|
select count(*) from t1;
|
|
drop table t1;
|
|
# The following should fail
|
|
!$1146 select count(*) from t1;
|