diff options
author | unknown <evgen@moonbone.local> | 2005-09-22 02:38:14 +0400 |
---|---|---|
committer | unknown <evgen@moonbone.local> | 2005-09-22 02:38:14 +0400 |
commit | c64d0fc6349737e37976ce7d7155d41292646c56 (patch) | |
tree | 71b068067c4b4596c15b8b53424e74567733d64f /mysql-test/r/update.result | |
parent | 7f983bf79ee8e1eac3684285803a81edb22a43e9 (diff) | |
parent | 1b02a815dde1379635fb1c76065fc056c084705a (diff) | |
download | mariadb-git-c64d0fc6349737e37976ce7d7155d41292646c56.tar.gz |
Manual merge
mysql-test/r/update.result:
Auto merged
mysql-test/t/update.test:
Auto merged
Diffstat (limited to 'mysql-test/r/update.result')
-rw-r--r-- | mysql-test/r/update.result | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/update.result b/mysql-test/r/update.result index 42fb8064044..9ca6370dff6 100644 --- a/mysql-test/r/update.result +++ b/mysql-test/r/update.result @@ -251,3 +251,15 @@ f1 f2 1 1 2 2 drop table t1,t2; +create table t1(f1 int); +select DATABASE(); +DATABASE() +test +update t1 set f1=1 where count(*)=1; +ERROR HY000: Invalid use of group function +select DATABASE(); +DATABASE() +test +delete from t1 where count(*)=1; +ERROR HY000: Invalid use of group function +drop table t1; |