Commit a9c00ce3 authored by unknown's avatar unknown

Merge alik.opbmk:/mnt/raid/alik/MySQL/devel/5.0-rt-build

into  alik.opbmk:/mnt/raid/alik/MySQL/devel/5.1-rt-build


mysql-test/r/view.result:
  Auto merged
mysql-test/t/view.test:
  Auto merged
parents 05f1863b cd39f94b
...@@ -834,14 +834,16 @@ show create view v1; ...@@ -834,14 +834,16 @@ show create view v1;
View Create View View Create View
v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select 99999999999999999999999999999999999999999999999999999 AS `col1` v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select 99999999999999999999999999999999999999999999999999999 AS `col1`
drop view v1; drop view v1;
create table t (c char); set names utf8;
create view v as select c from t; create table tü (cü char);
insert into v values (''); create view vü as select cü from tü;
select * from v; insert into vü values ('ü');
c select * from vü;
drop view v; ü
drop table t; drop view vü;
drop table tü;
set names latin1;
create table t1 (a int, b int); create table t1 (a int, b int);
insert into t1 values (1,2), (1,3), (2,4), (2,5), (3,10); insert into t1 values (1,2), (1,3), (2,4), (2,5), (3,10);
create view v1(c) as select a+1 from t1 where b >= 4; create view v1(c) as select a+1 from t1 where b >= 4;
......
...@@ -748,12 +748,14 @@ drop view v1; ...@@ -748,12 +748,14 @@ drop view v1;
# #
# VIEWs with national characters # VIEWs with national characters
# #
create table t (c char); set names utf8;
create view v as select c from t; create table tü (cü char);
insert into v values (''); create view vü as select cü from tü;
select * from v; insert into vü values ('ü');
drop view v; select * from vü;
drop table t; drop view vü;
drop table tü;
set names latin1;
# #
# problem with used_tables() of outer reference resolved in VIEW # problem with used_tables() of outer reference resolved in VIEW
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment