1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Portability fixes

Changed TRUNCATE table_name -> TRUNCATE TABLE table_name
This commit is contained in:
monty@donna.mysql.com
2001-02-02 03:47:06 +02:00
parent a2c2c9dc40
commit 9d120741d2
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;