1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge work:/my/mysql into donna.mysql.com:/home/my/bk/mysql

This commit is contained in:
monty@donna.mysql.com
2001-02-02 03:47:40 +02:00
20 changed files with 90 additions and 62 deletions

View File

@ -2,7 +2,7 @@
# Test of truncate
#
create table t1 (a integer, b integer,c1 CHAR(10));
truncate t1;
truncate table t1;
select count(*) from t1;
insert into t1 values(1,2,"test");
select count(*) from t1;