summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/funcs_1/r/storedproc.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/funcs_1/r/storedproc.result')
-rw-r--r--mysql-test/suite/funcs_1/r/storedproc.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/funcs_1/r/storedproc.result b/mysql-test/suite/funcs_1/r/storedproc.result
index 39be8c82..c043ea3f 100644
--- a/mysql-test/suite/funcs_1/r/storedproc.result
+++ b/mysql-test/suite/funcs_1/r/storedproc.result
@@ -7526,12 +7526,12 @@ declare x, y, z year(3) default 2005;
SELECT x, y, z;
END//
Warnings:
-Note 1287 'YEAR(3)' is deprecated and will be removed in a future release. Please use YEAR(4) instead
+Warning 1287 'YEAR(3)' is deprecated and will be removed in a future release. Please use YEAR(4) instead
CALL sp1();
x y z
2005 2005 2005
Warnings:
-Note 1287 'YEAR(3)' is deprecated and will be removed in a future release. Please use YEAR(4) instead
+Warning 1287 'YEAR(3)' is deprecated and will be removed in a future release. Please use YEAR(4) instead
DROP PROCEDURE IF EXISTS sp1;
CREATE PROCEDURE sp1( )
BEGIN