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
4412ad4e
Commit
4412ad4e
authored
May 16, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanups based on feedback from Monty.
parent
d398b6eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
sql/sql_show.cc
sql/sql_show.cc
+2
-3
No files found.
sql/sql_show.cc
View file @
4412ad4e
...
...
@@ -1362,13 +1362,12 @@ static bool show_status_array(THD *thd, const char *wild,
{
if
(
bitmap_is_set
(
bitmap
,
i
))
{
end
+=
my_snprintf
((
char
*
)
end
,
sizeof
(
buff
)
-
(
end
-
buff
),
"%d,"
,
i
)
;
end
=
int10_to_str
(
i
,
(
char
*
)
end
,
10
);
*
(
char
*
)
end
++=
','
;
}
}
if
(
end
!=
buff
)
end
--
;
// Remove last ','
*
(
char
*
)
end
=
0
;
}
break
;
}
...
...
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