diff options
Diffstat (limited to 'mysql-test/r/insert_select.result')
-rw-r--r-- | mysql-test/r/insert_select.result | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/mysql-test/r/insert_select.result b/mysql-test/r/insert_select.result index 367b6205550..17f65d96abc 100644 --- a/mysql-test/r/insert_select.result +++ b/mysql-test/r/insert_select.result @@ -668,13 +668,3 @@ ERROR 42S22: Unknown column 't2.a' in 'field list' insert into t1 select t2.a from t2 group by t2.a on duplicate key update a= t1.a + t2.b; ERROR 42S22: Unknown column 't2.b' in 'field list' drop table t1,t2,t3; -create table t1(f1 varchar(5) key); -insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1; -insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1; -insert into t1(f1) select if(max(f1) is null, '2000',max(f1)+1) from t1; -select * from t1; -f1 -2000 -2001 -2002 -drop table t1; |