Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
e7c31e81
Commit
e7c31e81
authored
Oct 12, 2006
by
kroki/tomash@moonlight.intranet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix after manual merge.
parent
9e942999
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
22 deletions
+21
-22
mysql-test/t/sp-error.test
mysql-test/t/sp-error.test
+21
-22
No files found.
mysql-test/t/sp-error.test
View file @
e7c31e81
...
...
@@ -1745,6 +1745,27 @@ drop function if exists bug16896;
create
aggregate
function
bug16896
()
returns
int
return
1
;
#
# BUG#14702: misleading error message when syntax error in CREATE
# PROCEDURE
#
# Misleading error message was given when IF NOT EXISTS was used in
# CREATE PROCEDURE.
#
--
disable_warnings
DROP
PROCEDURE
IF
EXISTS
bug14702
;
--
enable_warnings
--
error
ER_PARSE_ERROR
CREATE
IF
NOT
EXISTS
PROCEDURE
bug14702
()
BEGIN
END
;
--
error
ER_PARSE_ERROR
CREATE
PROCEDURE
IF
NOT
EXISTS
bug14702
()
BEGIN
END
;
#
# BUG#20953: create proc with a create view that uses local
...
...
@@ -1787,28 +1808,6 @@ PREPARE stmt FROM "CREATE VIEW v AS SELECT ?";
DROP
TABLE
t1
;
#
# BUG#14702: misleading error message when syntax error in CREATE
# PROCEDURE
#
# Misleading error message was given when IF NOT EXISTS was used in
# CREATE PROCEDURE.
#
--
disable_warnings
DROP
PROCEDURE
IF
EXISTS
bug14702
;
--
enable_warnings
--
error
ER_PARSE_ERROR
CREATE
IF
NOT
EXISTS
PROCEDURE
bug14702
()
BEGIN
END
;
--
error
ER_PARSE_ERROR
CREATE
PROCEDURE
IF
NOT
EXISTS
bug14702
()
BEGIN
END
;
#
# BUG#NNNN: New bug synopsis
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment