From d73b379cd1be04bd8bdf54ae9fe85f167b4a8a6a Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 22 Oct 2004 20:55:52 +0200 Subject: [PATCH] Updated view test result (after a warning's been removed). mysql-test/r/view.result: Updated test result (after a warning's been removed). --- mysql-test/r/view.result | 2 -- 1 file changed, 2 deletions(-) diff --git a/mysql-test/r/view.result b/mysql-test/r/view.result index 9c89de4259e..3f12a582868 100644 --- a/mysql-test/r/view.result +++ b/mysql-test/r/view.result @@ -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;