diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2003-08-23 21:21:02 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2003-08-23 21:21:02 +0300 |
commit | 5a08e6cf294837d641a11b21a35542ba2f4da47d (patch) | |
tree | 0a7ca981cdfd1aaa890af81c90bb5a41ae20548e /mysql-test/r | |
parent | 7a417ae37b4bcd87b863644b29f15df56aadfd2d (diff) | |
download | mariadb-git-5a08e6cf294837d641a11b21a35542ba2f4da47d.tar.gz |
union.result:
same as above
sql_lex.h:
same as above
sql_union.cc:
same as aobve
sql_select.cc:
Fixing that SQL_CALC_FOUND_ROWS work properly in UNION's in 4.1
Plus updating some fields in THD in the proper places
plus fixing a wrong result
sql/sql_select.cc:
Fixing that SQL_CALC_FOUND_ROWS work properly in UNION's in 4.1
Plus updating some fields in THD in the proper places
plus fixing a wrong result
sql/sql_union.cc:
same as aobve
sql/sql_lex.h:
same as above
mysql-test/r/union.result:
same as above
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 396eba7197b..fc72f55172b 100644 --- a/mysql-test/r/union.result +++ b/mysql-test/r/union.result @@ -103,7 +103,7 @@ a b 2 b select found_rows(); found_rows() -6 +8 explain select a,b from t1 union all select a,b from t2; id select_type table type possible_keys key key_len ref rows Extra 1 PRIMARY t1 ALL NULL NULL NULL NULL 4 |