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
a483fd21
Commit
a483fd21
authored
Oct 29, 2003
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-4.0/
into serg.mylan:/usr/home/serg/Abk/mysql-4.0
parents
5f2611d3
efd5a55f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
9 deletions
+17
-9
include/mysql_com.h
include/mysql_com.h
+1
-1
innobase/row/row0sel.c
innobase/row/row0sel.c
+8
-2
sql/mysqld.cc
sql/mysqld.cc
+8
-6
No files found.
include/mysql_com.h
View file @
a483fd21
...
...
@@ -31,7 +31,7 @@
#if defined(__WIN__) && !defined( _CUSTOMCONFIG_)
#define MYSQL_NAMEDPIPE "MySQL"
#define MYSQL_SERVICENAME "
MySql
"
#define MYSQL_SERVICENAME "
mysqld
"
#endif
/* __WIN__ */
enum
enum_server_command
{
...
...
innobase/row/row0sel.c
View file @
a483fd21
...
...
@@ -3222,8 +3222,14 @@ rec_loop:
latest version of the record */
}
else
if
(
index
==
clust_index
)
{
if
(
!
lock_clust_rec_cons_read_sees
(
rec
,
index
,
/* Fetch a previous version of the row if the current
one is not visible in the snapshot; if we have a very
high force recovery level set, we try to avoid crashes
by skipping this lookup */
if
(
srv_force_recovery
<
5
&&
!
lock_clust_rec_cons_read_sees
(
rec
,
index
,
trx
->
read_view
))
{
err
=
row_sel_build_prev_vers_for_mysql
(
...
...
sql/mysqld.cc
View file @
a483fd21
...
...
@@ -1958,7 +1958,7 @@ extern "C" pthread_handler_decl(handle_shutdown,arg)
#endif
const
char
*
load_default_groups
[]
=
{
"mysqld"
,
"server"
,
MYSQL_BASE_VERSION
,
0
};
const
char
*
load_default_groups
[]
=
{
"mysqld"
,
"server"
,
MYSQL_BASE_VERSION
,
0
,
0
};
bool
open_log
(
MYSQL_LOG
*
log
,
const
char
*
hostname
,
const
char
*
opt_name
,
const
char
*
extension
,
...
...
@@ -2561,7 +2561,7 @@ default_service_handling(char **argv,
const
char
*
extra_opt
)
{
char
path_and_service
[
FN_REFLEN
+
FN_REFLEN
+
32
],
*
pos
,
*
end
;
end
=
path_and_service
+
sizeof
(
path_and_service
)
-
1
;
end
=
path_and_service
+
sizeof
(
path_and_service
)
-
3
;
/* We have to quote filename if it contains spaces */
pos
=
add_quoted_string
(
path_and_service
,
file_path
,
end
);
...
...
@@ -2571,7 +2571,9 @@ default_service_handling(char **argv,
*
pos
++=
' '
;
pos
=
add_quoted_string
(
pos
,
extra_opt
,
end
);
}
*
pos
=
0
;
// Ensure end null
/* We must have servicename last */
*
pos
++=
' '
;
strmake
(
pos
,
servicename
,
(
uint
)
(
end
+
2
-
pos
));
if
(
Service
.
got_service_option
(
argv
,
"install"
))
{
...
...
@@ -2616,7 +2618,7 @@ int main(int argc, char **argv)
if
(
Service
.
IsService
(
argv
[
1
]))
{
/* start an optional service */
load_default_groups
[
0
]
=
argv
[
1
];
load_default_groups
[
3
]
=
argv
[
1
];
start_mode
=
1
;
Service
.
Init
(
argv
[
1
],
mysql_service
);
return
0
;
...
...
@@ -2624,8 +2626,7 @@ int main(int argc, char **argv)
}
else
if
(
argc
==
3
)
/* install or remove any optional service */
{
if
(
!
default_service_handling
(
argv
,
argv
[
2
],
argv
[
2
],
file_path
,
argv
[
2
]))
if
(
!
default_service_handling
(
argv
,
argv
[
2
],
argv
[
2
],
file_path
,
""
))
return
0
;
if
(
Service
.
IsService
(
argv
[
2
]))
{
...
...
@@ -2637,6 +2638,7 @@ int main(int argc, char **argv)
opt_argc
=
2
;
// Skip service-name
opt_argv
=
argv
;
start_mode
=
1
;
load_default_groups
[
3
]
=
argv
[
2
];
Service
.
Init
(
argv
[
2
],
mysql_service
);
return
0
;
}
...
...
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