mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
view.result, view.test:
Fix for test case for bug#11709 mysql-test/t/view.test: Fix for test case for bug#11709 mysql-test/r/view.result: Fix for test case for bug#11709
This commit is contained in:
@ -1956,6 +1956,7 @@ f3 f1
|
|||||||
2 1
|
2 1
|
||||||
3 2
|
3 2
|
||||||
1 3
|
1 3
|
||||||
|
drop view v1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
CREATE TABLE t1 (f1 char) ENGINE = innodb;
|
CREATE TABLE t1 (f1 char) ENGINE = innodb;
|
||||||
INSERT INTO t1 VALUES ('A');
|
INSERT INTO t1 VALUES ('A');
|
||||||
|
@ -1796,6 +1796,7 @@ create table t1 (f1 int, f2 int);
|
|||||||
create view v1 as select f1 as f3, f2 as f1 from t1;
|
create view v1 as select f1 as f3, f2 as f1 from t1;
|
||||||
insert into t1 values (1,3),(2,1),(3,2);
|
insert into t1 values (1,3),(2,1),(3,2);
|
||||||
select * from v1 order by f1;
|
select * from v1 order by f1;
|
||||||
|
drop view v1;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user