diff options
author | unknown <anozdrin/alik@alik.opbmk> | 2007-02-23 20:53:49 +0300 |
---|---|---|
committer | unknown <anozdrin/alik@alik.opbmk> | 2007-02-23 20:53:49 +0300 |
commit | 1264c5826ebf3eb9f2fde79ae32e9799346e2e7b (patch) | |
tree | 44d7ddb86ad714098aaa0fde8204976df89cdf4b /mysql-test/r/view.result | |
parent | 2894e8176b9f4446cacc6833b1b6fc4b0e8407c0 (diff) | |
parent | 49b66418a0c35600839f8dda07bb70e248a392ea (diff) | |
download | mariadb-git-1264c5826ebf3eb9f2fde79ae32e9799346e2e7b.tar.gz |
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
Diffstat (limited to 'mysql-test/r/view.result')
-rw-r--r-- | mysql-test/r/view.result | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index 4d3b20ffcbc..5e81df99d18 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -834,14 +834,16 @@ show create view v1; View Create View v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select 99999999999999999999999999999999999999999999999999999 AS `col1` drop view v1; -create table t (c char); -create view v as select c from t; -insert into v values (''); -select * from v; -c - -drop view v; -drop table t; +set names utf8; +create table tü (cü char); +create view vü as select cü from tü; +insert into vü values ('ü'); +select * from vü; +cü +ü +drop view vü; +drop table tü; +set names latin1; create table t1 (a int, b int); 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; |