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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user