diff options
author | monty@mashka.mysql.fi <> | 2002-12-06 21:11:27 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2002-12-06 21:11:27 +0200 |
commit | 35ff08c2af7c6fd61d28e7da35ee5c3b6d26c06d (patch) | |
tree | 969377c9c94475e559670dfcc0a8c4f7ed16b388 /mysql-test/t/multi_update.test | |
parent | 859b68847666823baa328c5c7f3da96787807bb3 (diff) | |
download | mariadb-git-35ff08c2af7c6fd61d28e7da35ee5c3b6d26c06d.tar.gz |
After merge fixes
Added THD to add_to_xxx_list() functions for faster parsing.
Diffstat (limited to 'mysql-test/t/multi_update.test')
-rw-r--r-- | mysql-test/t/multi_update.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/multi_update.test b/mysql-test/t/multi_update.test index b79b0749c82..ff456b710c1 100644 --- a/mysql-test/t/multi_update.test +++ b/mysql-test/t/multi_update.test @@ -183,8 +183,8 @@ insert into t1 values(1,1,NULL); insert into t2 values(1,10,NULL),(2,20,NULL); set timestamp=1038000000; UPDATE t1,t2 SET t1.d=t2.d WHERE t1.n=t2.n; -select * from t1; -select * from t2; +select n,d,unix_timestamp(t) from t1; +select n,d,unix_timestamp(t) from t2; --error 1064 UPDATE t1,t2 SET 1=2 WHERE t1.n=t2.n; drop table t1,t2; |