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
ac4dacaa
Commit
ac4dacaa
authored
Feb 02, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge work:/my/mysql-4.0 into mashka.mysql.fi:/home/my/mysql-4.0
parents
88301da1
9ae3202e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
client/mysql.cc
client/mysql.cc
+5
-2
sql/mysqld.cc
sql/mysqld.cc
+3
-3
No files found.
client/mysql.cc
View file @
ac4dacaa
...
...
@@ -40,7 +40,7 @@
#include <signal.h>
#include <violite.h>
const
char
*
VER
=
"12.1
7
"
;
const
char
*
VER
=
"12.1
8
"
;
/* Don't try to make a nice table if the data is too big */
#define MAX_COLUMN_LENGTH 1024
...
...
@@ -2647,7 +2647,10 @@ static const char* construct_prompt()
!
mysql
.
unix_socket
)
add_int_to_prompt
(
mysql
.
port
);
else
processed_prompt
.
append
(
strrchr
(
mysql
.
unix_socket
,
'/'
)
+
1
);
{
char
*
pos
=
strrchr
(
mysql
.
unix_socket
,
'/'
);
processed_prompt
.
append
(
pos
?
pos
+
1
:
mysql
.
unix_socket
);
}
break
;
case
'U'
:
if
(
!
full_username
)
...
...
sql/mysqld.cc
View file @
ac4dacaa
...
...
@@ -2371,9 +2371,9 @@ The server will not act as a slave.");
sql_print_error
(
"Warning: Can't create thread to manage maintenance"
);
}
if
(
unix_sock
==
INVALID_SOCKET
)
mysql_unix_port
[
0
]
=
0
;
printf
(
ER
(
ER_READY
),
my_progname
,
server_version
,
mysql_unix_port
,
mysql_port
);
printf
(
ER
(
ER_READY
),
my_progname
,
server_version
,
((
unix_sock
==
INVALID_SOCKET
)
?
(
char
*
)
""
:
mysql_unix_port
),
mysql_port
);
fflush
(
stdout
);
#ifdef __NT__
...
...
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