summaryrefslogtreecommitdiff
path: root/mysql-test/r/view.result
diff options
context:
space:
mode:
authorunknown <sergefp@mysql.com>2005-09-07 11:50:41 +0400
committerunknown <sergefp@mysql.com>2005-09-07 11:50:41 +0400
commit3003e5a0eb66ce221968cf8ac6199800bba1eedd (patch)
treebe6bb967df4f223c53c89c154f0a9bb1bd5d04f9 /mysql-test/r/view.result
parentb48e721d2f2e4f2ae591de5c581e002db8d7cc88 (diff)
downloadmariadb-git-3003e5a0eb66ce221968cf8ac6199800bba1eedd.tar.gz
Fix for BUG#12941: in create_tmp_field(), if the passed item is an Item_ref, put newly
created item into item->result_field, not *(item->ref)->result_field. mysql-test/r/view.result: Tescase for BUG#12941 mysql-test/t/view.test: Tescase for BUG#12941
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r--mysql-test/r/view.result26
1 files changed, 26 insertions, 0 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result
index a544fb4b020..e141393176c 100644
--- a/mysql-test/r/view.result
+++ b/mysql-test/r/view.result
@@ -2151,3 +2151,29 @@ select * from v1;
strcmp(f1,'a')
drop view v1;
drop table t1;
+create table t1 (
+r_object_id char(16) NOT NULL,
+group_name varchar(32) NOT NULL
+) engine = InnoDB;
+create table t2 (
+r_object_id char(16) NOT NULL,
+i_position int(11) NOT NULL,
+users_names varchar(32) default NULL
+) Engine = InnoDB;
+create view v1 as select r_object_id, group_name from t1;
+create view v2 as select r_object_id, i_position, users_names from t2;
+create unique index r_object_id on t1(r_object_id);
+create index group_name on t1(group_name);
+create unique index r_object_id_i_position on t2(r_object_id,i_position);
+create index users_names on t2(users_names);
+insert into t1 values('120001a080000542','tstgroup1');
+insert into t2 values('120001a080000542',-1, 'guser01');
+insert into t2 values('120001a080000542',-2, 'guser02');
+select v1.r_object_id, v2.users_names from v1, v2
+where (v1.group_name='tstgroup1') and v2.r_object_id=v1.r_object_id
+order by users_names;
+r_object_id users_names
+120001a080000542 guser01
+120001a080000542 guser02
+drop view v1, v2;
+drop table t1, t2;