mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
39b792908f
mysql-test/r/ndb_view.result: New BitKeeper file ``mysql-test/r/ndb_view.result'' mysql-test/t/ndb_view.test: New BitKeeper file ``mysql-test/t/ndb_view.test''
29 lines
642 B
Text
29 lines
642 B
Text
-- source include/have_ndb.inc
|
|
-- source include/not_embedded.inc
|
|
|
|
--disable_warnings
|
|
DROP TABLE IF EXISTS t1,t2,t3;
|
|
DROP VIEW IF EXISTS v1,v2,v3;
|
|
--enable_warnings
|
|
|
|
#
|
|
# simple operations via view
|
|
#
|
|
|
|
create table t1 (a int, b int, c int, d int) engine=ndb;
|
|
insert into t1 values (1,2,3,4),(5,6,7,8);
|
|
|
|
create view v1 as select t1.c as a, t1.a as b, t1.d as c, t1.a+t1.b+t1.c as d from t1;
|
|
select * from v1 order by a,b,c;
|
|
|
|
update v1 set a=a+100 where b=1;
|
|
select * from v1 order by a,b,c;
|
|
|
|
drop view v1;
|
|
|
|
create view v1 as select t1.c as a from t1;
|
|
insert into v1 values (200);
|
|
select * from t1 order by a,b,c,d;
|
|
|
|
drop view v1;
|
|
drop table t1;
|