1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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

mysql-test/r/view.result:
  Updated test result (after a warning's been removed).
This commit is contained in:
unknown
2004-10-22 20:55:52 +02:00
parent a50cd5c53d
commit d73b379cd1

View File

@ -991,8 +991,6 @@ drop view v1;
create view v1 (a,a) as select 'a','a';
ERROR 42S21: Duplicate column name 'a'
create procedure p1 () begin declare v int; create view v1 as select v; end;//
Warnings:
Warning 1311 Referring to uninitialized variable v
call p1();
ERROR HY000: View's SELECT contains a variable or parameter
drop procedure p1;