diff options
author | unknown <holyfoot/hf@deer.(none)> | 2006-11-13 20:16:46 +0400 |
---|---|---|
committer | unknown <holyfoot/hf@deer.(none)> | 2006-11-13 20:16:46 +0400 |
commit | 298aff126768cc6fe81714b5bf8b3ae23f153444 (patch) | |
tree | d70dc487b4e33a39736452f6305733ffb37e2321 /mysql-test/r/insert.result | |
parent | bbc5d13891e09447d399112dfa9fa1b9da929b64 (diff) | |
parent | ea1f7e4b5697c3275c301011beaa394548f273ae (diff) | |
download | mariadb-git-298aff126768cc6fe81714b5bf8b3ae23f153444.tar.gz |
Merge mysql.com:/home/hf/work/embt/my50-embt
into mysql.com:/home/hf/work/embt/my51-embt
libmysqld/lib_sql.cc:
Auto merged
BitKeeper/deleted/.del-bdb.result:
Auto merged
BitKeeper/deleted/.del-bdb.test:
Auto merged
mysql-test/r/insert_select.result:
Auto merged
mysql-test/r/join.result:
Auto merged
mysql-test/t/backup.test:
Auto merged
mysql-test/t/delayed.test:
Auto merged
mysql-test/t/join.test:
Auto merged
mysql-test/t/status.test:
Auto merged
mysql-test/t/trigger.test:
Auto merged
sql/item_func.cc:
Auto merged
sql/item_strfunc.cc:
Auto merged
mysql-test/mysql-test-run.pl:
merging
mysql-test/r/flush_block_commit.result:
SCCS merged
mysql-test/r/insert.result:
merging
mysql-test/t/innodb.test:
merging
mysql-test/t/insert.test:
merging
sql/share/errmsg.txt:
merging
Diffstat (limited to 'mysql-test/r/insert.result')
-rw-r--r-- | mysql-test/r/insert.result | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysql-test/r/insert.result b/mysql-test/r/insert.result index b090f0f52c0..ef2ed6f0acf 100644 --- a/mysql-test/r/insert.result +++ b/mysql-test/r/insert.result @@ -321,12 +321,6 @@ ERROR 42000: Column 'b' specified twice INSERT INTO t1 (b,b) SELECT 0,0 ON DUPLICATE KEY UPDATE a = a + VALUES (a); ERROR 42000: Column 'b' specified twice drop table t1; -create table t1 (n int); -create view v1 as select * from t1; -insert delayed into v1 values (1); -ERROR HY000: 'test.v1' is not BASE TABLE -drop table t1; -drop view v1; create table t1 (id int primary key, data int); insert into t1 values (1, 1), (2, 2), (3, 3); select row_count(); |