diff options
author | unknown <bell@sanja.is.com.ua> | 2002-12-15 22:01:09 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-12-15 22:01:09 +0200 |
commit | fce29f66fb95c1742f3a80c67ad92d21f1cc1544 (patch) | |
tree | 6e2430fb160cf6e7252f96d4be3ca19cfb00c2d6 /mysql-test/r/delete.result | |
parent | 19ca6d368b3a9df5c9befe6fcad7eddd0e933892 (diff) | |
download | mariadb-git-fce29f66fb95c1742f3a80c67ad92d21f1cc1544.tar.gz |
moved links initialization
mysql-test/r/delete.result:
test of delete error
mysql-test/t/delete.test:
test of delete error
Diffstat (limited to 'mysql-test/r/delete.result')
-rw-r--r-- | mysql-test/r/delete.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/delete.result b/mysql-test/r/delete.result index c2230722aa6..351798b0509 100644 --- a/mysql-test/r/delete.result +++ b/mysql-test/r/delete.result @@ -24,3 +24,12 @@ create table t1 (a bigint not null, primary key (a,a,a,a,a,a,a,a,a,a)); insert into t1 values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23),(27); delete from t1 where a=27; drop table t1; +drop table if exists t; +CREATE TABLE `t` ( +`i` int(10) NOT NULL default '0', +`i2` int(10) NOT NULL default '0', +PRIMARY KEY (`i`) +) TYPE=MyISAM CHARSET=latin1; +DELETE FROM t USING t WHERE post='1'; +Unknown column 'post' in 'where clause' +drop table if exists t; |