diff options
author | unknown <bell@sanja.is.com.ua> | 2002-11-24 17:41:34 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-11-24 17:41:34 +0200 |
commit | de5edbee796d286811e3dad3cfa9a394c37bf63a (patch) | |
tree | 80c31753814c2a84f21ef0eda97bf9e563dac4a5 /mysql-test/r/group_by.result | |
parent | 11775319b8f6eb5b228254ef5a491b7bb3a5477c (diff) | |
download | mariadb-git-de5edbee796d286811e3dad3cfa9a394c37bf63a.tar.gz |
fixed removed by previos patch thd->allow_sum_func "side effect" of setup_conds
renamed tables to prevent droping real tables
mysql-test/r/group_by.result:
test of error message
mysql-test/r/subselect.result:
renamed tables to prevent droping real tables
mysql-test/t/group_by.test:
test of error message
mysql-test/t/subselect.test:
renamed tables to prevent droping real tables
sql/sql_base.cc:
moved thd->allow_sum_func assignment to upper level
sql/sql_select.cc:
fixed removed by previos patch thd->allow_sum_func "side effect" of setup_conds
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index 86a8eb2dd22..ead9935f824 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -1,3 +1,5 @@ +SELECT 1 FROM (SELECT 1) GROUP BY SUM(1); +Invalid use of group function drop table if exists t1,t2,t3; CREATE TABLE t1 ( spID int(10) unsigned, |