diff options
author | unknown <bell@sanja.is.com.ua> | 2004-04-03 11:13:51 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-04-03 11:13:51 +0300 |
commit | 8c8dffb60d23bf3a5666dcc251d2f15cb913d541 (patch) | |
tree | c9f3e9d74cc127bb1de122f2c0d31fab4719caac /mysql-test/r | |
parent | a62a5fc9c0cef8d9f1ae685b43b6dc539d6fcfc8 (diff) | |
download | mariadb-git-8c8dffb60d23bf3a5666dcc251d2f15cb913d541.tar.gz |
fixed brocken of client_test
fixed aggregate functions in PS (BUG#3360)
mysql-test/r/union.result:
4.1 more correct error
sql/item_cmpfunc.h:
and_conds do not make fix fields
sql/item_sum.cc:
storing/restoring argument of aggregate function for prepared statements
restoring order list of group_concat for safety
sql/item_sum.h:
storing/restoring argument of aggregate function for prepared statements
layout fix
sql/mysql_priv.h:
just declaration
sql/sql_base.cc:
fix_fields() have to be called with temporary memory pool active
sql/sql_parse.cc:
removed hack with item pointer storing
sql/sql_prepare.cc:
debug output added
removed hack with item pointer storing
sql/sql_select.cc:
fix_fields now should be called separately
sql/sql_union.cc:
removed wrong merged check from 4.0 (4.1 have its own protection)
sql/table.h:
removed hack with item pointer storing
tests/client_test.c:
new test fo PS
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/union.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result index 8e288f9725f..91d53ce21d0 100644 --- a/mysql-test/r/union.result +++ b/mysql-test/r/union.result @@ -435,7 +435,7 @@ drop temporary table t1; create table t1 select a from t1 union select a from t2; ERROR HY000: You can't specify target table 't1' for update in FROM clause select a from t1 union select a from t2 order by t2.a; -ERROR 42S22: Unknown column 't2.a' in 'ORDER BY' +ERROR 42S02: Unknown table 't2' in order clause drop table t1,t2; select length(version()) > 1 as `*` UNION select 2; * |