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
66f0ff16
Commit
66f0ff16
authored
Dec 18, 2004
by
paul@frost.snake.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql.cc:
Fix up mysql help messages.
parent
adfb20f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
client/mysql.cc
client/mysql.cc
+2
-2
No files found.
client/mysql.cc
View file @
66f0ff16
...
...
@@ -1677,7 +1677,7 @@ static int com_server_help(String *buffer __attribute__((unused)),
if
(
num_fields
==
2
)
{
put_info
(
"Many help items for your request exist."
,
INFO_INFO
);
put_info
(
"To make a more specific request, please type 'help <item>',
\n
where
item
is one of the following"
,
INFO_INFO
);
put_info
(
"To make a more specific request, please type 'help <item>',
\n
where
<item>
is one of the following"
,
INFO_INFO
);
num_name
=
0
;
num_cat
=
1
;
last_char
=
'_'
;
...
...
@@ -1685,7 +1685,7 @@ static int com_server_help(String *buffer __attribute__((unused)),
else
if
((
cur
=
mysql_fetch_row
(
result
)))
{
tee_fprintf
(
PAGER
,
"You asked for help about help category:
\"
%s
\"\n
"
,
cur
[
0
]);
put_info
(
"For more information, type 'help <item>', where
item
is one of the following"
,
INFO_INFO
);
put_info
(
"For more information, type 'help <item>', where
<item>
is one of the following"
,
INFO_INFO
);
num_name
=
1
;
num_cat
=
2
;
print_help_item
(
&
cur
,
1
,
2
,
&
last_char
);
...
...
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