summaryrefslogtreecommitdiff
path: root/mysql-test/suite/vcol/r/range.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/vcol/r/range.result')
-rw-r--r--mysql-test/suite/vcol/r/range.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/vcol/r/range.result b/mysql-test/suite/vcol/r/range.result
index ad7a39bc11c..5b081a5dbe8 100644
--- a/mysql-test/suite/vcol/r/range.result
+++ b/mysql-test/suite/vcol/r/range.result
@@ -4,6 +4,6 @@ create table t2 (a int, b int) engine=myisam;
insert into t2 values (1,2),(2,4);
select * from t1 inner join t2 on ( t2.b = t1.v or t2.a = t1.pk );
pk i v a b
-1 1 0 1 2
-2 2 0 2 4
+1 1 2 1 2
+2 2 4 2 4
drop table t1, t2;