diff options
author | monty@narttu.mysql.fi <> | 2003-06-05 00:12:45 +0300 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2003-06-05 00:12:45 +0300 |
commit | dad0664579410c9e2b4d2a310becec239f8ae8a8 (patch) | |
tree | 824e127f68404d3fbe881d6619e34ad389d21202 /mysql-test/r/truncate.result | |
parent | 94b570daf93528798e84f2544bfef353fa53257c (diff) | |
parent | f5bb1e0907a6fdfe30990d5e58a387abcdb98e7c (diff) | |
download | mariadb-git-dad0664579410c9e2b4d2a310becec239f8ae8a8.tar.gz |
merge with public tree
Diffstat (limited to 'mysql-test/r/truncate.result')
-rw-r--r-- | mysql-test/r/truncate.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/truncate.result b/mysql-test/r/truncate.result index ad390c9fa92..0e256c1bf8e 100644 --- a/mysql-test/r/truncate.result +++ b/mysql-test/r/truncate.result @@ -14,7 +14,7 @@ select * from t1; a b c1 drop table t1; select count(*) from t1; -Table 'test.t1' doesn't exist +ERROR 42S02: Table 'test.t1' doesn't exist create temporary table t1 (n int); insert into t1 values (1),(2),(3); truncate table t1; @@ -22,4 +22,4 @@ select * from t1; n drop table t1; truncate non_existing_table; -Table 'test.non_existing_table' doesn't exist +ERROR 42S02: Table 'test.non_existing_table' doesn't exist |