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
d0ff5df0
Commit
d0ff5df0
authored
Jun 01, 2007
by
kostja@bodhi.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a warning.
parent
679a2643
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
sql/sp.cc
sql/sp.cc
+3
-1
No files found.
sql/sp.cc
View file @
d0ff5df0
...
...
@@ -1017,7 +1017,9 @@ sp_show_create_routine(THD *thd, int type, sp_name *name)
&
thd
->
sp_proc_cache
:
&
thd
->
sp_func_cache
;
DBUG_ENTER
(
"sp_show_create_routine"
);
DBUG_PRINT
(
"enter"
,
(
"name: %.*s"
,
name
->
m_name
.
length
,
name
->
m_name
.
str
));
DBUG_PRINT
(
"enter"
,
(
"name: %.*s"
,
(
int
)
name
->
m_name
.
length
,
name
->
m_name
.
str
));
DBUG_ASSERT
(
type
==
TYPE_ENUM_PROCEDURE
||
type
==
TYPE_ENUM_FUNCTION
);
...
...
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