Commit 25c45fd1 authored by unknown's avatar unknown

Updated view test result (after a warning's been removed).


mysql-test/r/view.result:
  Updated test result (after a warning's been removed).
parent 1239d3e6
...@@ -991,8 +991,6 @@ drop view v1; ...@@ -991,8 +991,6 @@ drop view v1;
create view v1 (a,a) as select 'a','a'; create view v1 (a,a) as select 'a','a';
ERROR 42S21: Duplicate column name 'a' ERROR 42S21: Duplicate column name 'a'
create procedure p1 () begin declare v int; create view v1 as select v; end;// create procedure p1 () begin declare v int; create view v1 as select v; end;//
Warnings:
Warning 1311 Referring to uninitialized variable v
call p1(); call p1();
ERROR HY000: View's SELECT contains a variable or parameter ERROR HY000: View's SELECT contains a variable or parameter
drop procedure p1; drop procedure p1;
......
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