summaryrefslogtreecommitdiff
path: root/mysql-test/r/union.result
diff options
context:
space:
mode:
authorAjo Robert <ajo.robert@oracle.com>2018-04-10 00:30:59 +0530
committerAjo Robert <ajo.robert@oracle.com>2018-04-10 00:30:59 +0530
commit940b88b686bcf037a36f6e81be4017a07fcf782a (patch)
tree9e5cd4e35627586bfeb57dda77d73fcd5427a726 /mysql-test/r/union.result
parentd982e717aba67227ec40761a21a4211db91aa0e2 (diff)
downloadmariadb-git-940b88b686bcf037a36f6e81be4017a07fcf782a.tar.gz
Bug#27197235 USER VARIABLE + UINON + DECIMAL COLUMN RETURNS
WRONG VALUES User variables will have the default session collation associated with it. And a select which uses it as part of a union may infer the collation while type merging. This leads to problems when the result is of DECIMAL type. Setting the appropriate collation of DECIMAL result type is missing in 5.7 code base. Added code to set appropriate collation when the result is of DECIMAL type during Item_type_holder::join_types().
Diffstat (limited to 'mysql-test/r/union.result')
-rw-r--r--mysql-test/r/union.result16
1 files changed, 16 insertions, 0 deletions
diff --git a/mysql-test/r/union.result b/mysql-test/r/union.result
index 97c1a8b4d49..c0b364d0fde 100644
--- a/mysql-test/r/union.result
+++ b/mysql-test/r/union.result
@@ -1860,3 +1860,19 @@ DROP TABLE t17059925, t2, t3;
SET @@long_query_time= @old_long_query_time;
SET @@global.log_output= @old_log_output;
SET @@global.slow_query_log= @old_slow_query_log;
+#
+# Bug#27197235 USER VARIABLE + UINON + DECIMAL COLUMN RETURNS
+# WRONG VALUES
+#
+SET NAMES utf8;
+SET @advertAcctId = 1000003;
+select @advertAcctId as a from dual union all select 1.0 from dual;
+a
+1000003.0
+1.0
+SET NAMES latin1;
+SET @advertAcctId = 1000003;
+select @advertAcctId as a from dual union all select 1.0 from dual;
+a
+1000003.0
+1.0