diff options
author | unknown <monty@donna.mysql.com> | 2001-02-02 03:47:06 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-02-02 03:47:06 +0200 |
commit | c046cce4e87370ca995903d79e03af37671fbb51 (patch) | |
tree | 19641f8502749972f84a35f4dbc182e18e30af5a /mysql-test/t/truncate.test | |
parent | 3a1fad21f97434b6b5151322e430861a394ee055 (diff) | |
download | mariadb-git-c046cce4e87370ca995903d79e03af37671fbb51.tar.gz |
Portability fixes
Changed TRUNCATE table_name -> TRUNCATE TABLE table_name
Docs/manual.texi:
Changed TRUNCATE table_name -> TRUNCATE TABLE table_name
client/mysql.cc:
Don't crash when using -q with long fields
include/my_net.h:
Portability fix
mysql-test/t/truncate.test:
Changed TRUNCATE table_name -> TRUNCATE TABLE table_name
readline/input.c:
Portability fix
scripts/make_binary_distribution.sh:
Portability fix
sql-bench/crash-me.sh:
Portability fix
sql/mini_client.cc:
Portability fix
sql/mysqld.cc:
cleanup
sql/share/dutch/errmsg.txt:
Fixed typo
sql/share/english/errmsg.txt:
Fixed typo
sql/share/greek/errmsg.txt:
Fixed typo
sql/share/hungarian/errmsg.txt:
Fixed typo
sql/share/italian/errmsg.txt:
New translated messages
sql/share/portuguese/errmsg.txt:
Fixed typo
sql/share/romanian/errmsg.txt:
Fixed typo
sql/share/slovak/errmsg.txt:
Fixed typo
sql/share/spanish/errmsg.txt:
Fixed typo
sql/sql_yacc.yy:
Changed TRUNCATE table_name -> TRUNCATE TABLE table_name
support-files/Makefile.am:
Portability fix
Diffstat (limited to 'mysql-test/t/truncate.test')
-rw-r--r-- | mysql-test/t/truncate.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/truncate.test b/mysql-test/t/truncate.test index 39c13b028cc..e995517cf1e 100644 --- a/mysql-test/t/truncate.test +++ b/mysql-test/t/truncate.test @@ -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; |