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
3fb0f420
Commit
3fb0f420
authored
Jul 17, 2006
by
jimw@rama.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0-kt
into rama.(none):/home/jimw/my/mysql-5.0-17485
parents
7350cb8b
9a2a3c6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
client/mysql.cc
client/mysql.cc
+4
-2
No files found.
client/mysql.cc
View file @
3fb0f420
...
@@ -3642,12 +3642,14 @@ static const char* construct_prompt()
...
@@ -3642,12 +3642,14 @@ static const char* construct_prompt()
case
'U'
:
case
'U'
:
if
(
!
full_username
)
if
(
!
full_username
)
init_username
();
init_username
();
processed_prompt
.
append
(
full_username
);
processed_prompt
.
append
(
full_username
?
full_username
:
(
current_user
?
current_user
:
"(unknown)"
));
break
;
break
;
case
'u'
:
case
'u'
:
if
(
!
full_username
)
if
(
!
full_username
)
init_username
();
init_username
();
processed_prompt
.
append
(
part_username
);
processed_prompt
.
append
(
part_username
?
part_username
:
(
current_user
?
current_user
:
"(unknown)"
));
break
;
break
;
case
PROMPT_CHAR
:
case
PROMPT_CHAR
:
processed_prompt
.
append
(
PROMPT_CHAR
);
processed_prompt
.
append
(
PROMPT_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