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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
de08cd2b
Commit
de08cd2b
authored
Dec 16, 2005
by
andrey@lmy004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#1034 update
fix bug with DROP EVENT non_existant; giving back OK + warning
parent
ab953ea8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
sql/share/errmsg.txt
sql/share/errmsg.txt
+1
-1
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
No files found.
sql/share/errmsg.txt
View file @
de08cd2b
...
...
@@ -5726,7 +5726,7 @@ ER_EVENT_ALREADY_EXISTS
ER_EVENT_STORE_FAILED
eng "Failed to store event %s. Error code %d from storage engine."
ER_EVENT_DOES_NOT_EXIST
eng "
Event %s does not exist
"
eng "
Unknown event '%s'
"
ER_EVENT_CANT_ALTER
eng "Failed to alter event %s"
ER_EVENT_DROP_FAILED
...
...
sql/sql_parse.cc
View file @
de08cd2b
...
...
@@ -3696,7 +3696,7 @@ mysql_execute_command(THD *thd)
res
=
evex_update_event
(
thd
,
lex
->
et
,
lex
->
spname
);
break
;
case
SQLCOM_DROP_EVENT
:
evex_drop_event
(
thd
,
lex
->
et
,
lex
->
drop_if_exists
);
res
=
evex_drop_event
(
thd
,
lex
->
et
,
lex
->
drop_if_exists
);
default:
;
}
if
(
!
res
)
...
...
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