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
12b442b6
Commit
12b442b6
authored
Jun 29, 2001
by
sasha@mysql.sashanet.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
post-merge fix
fixed bug in LOAD DATA FROM MASTER
parent
24203799
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
1 deletion
+7
-1
.bzrignore
.bzrignore
+1
-0
sql/mysqld.cc
sql/mysqld.cc
+1
-1
sql/sql_repl.cc
sql/sql_repl.cc
+5
-0
No files found.
.bzrignore
View file @
12b442b6
...
@@ -370,3 +370,4 @@ libmysqld/stacktrace.c
...
@@ -370,3 +370,4 @@ libmysqld/stacktrace.c
sql/share/mysql
sql/share/mysql
.gdbinit
.gdbinit
.vimrc
.vimrc
scripts/mysqld_safe
sql/mysqld.cc
View file @
12b442b6
...
@@ -2487,7 +2487,7 @@ enum options {
...
@@ -2487,7 +2487,7 @@ enum options {
OPT_GEMINI_UNBUFFERED_IO
,
OPT_SKIP_SAFEMALLOC
,
OPT_GEMINI_UNBUFFERED_IO
,
OPT_SKIP_SAFEMALLOC
,
OPT_SKIP_STACK_TRACE
,
OPT_SKIP_SYMLINK
,
OPT_REPORT_HOST
,
OPT_SKIP_STACK_TRACE
,
OPT_SKIP_SYMLINK
,
OPT_REPORT_HOST
,
OPT_REPORT_USER
,
OPT_REPORT_PASSWORD
,
OPT_REPORT_PORT
,
OPT_REPORT_USER
,
OPT_REPORT_PASSWORD
,
OPT_REPORT_PORT
,
OPT_MAX_BINLOG_DUMP_EVENTS
,
OPT_SPORADIC_BINLOG_DUMP
,
OPT_MAX_BINLOG_DUMP_EVENTS
,
OPT_SPORADIC_BINLOG_DUMP
_FAIL
,
OPT_SHOW_SLAVE_AUTH_INFO
};
OPT_SHOW_SLAVE_AUTH_INFO
};
static
struct
option
long_options
[]
=
{
static
struct
option
long_options
[]
=
{
...
...
sql/sql_repl.cc
View file @
12b442b6
...
@@ -37,6 +37,10 @@ int max_binlog_dump_events = 0; // unlimited
...
@@ -37,6 +37,10 @@ int max_binlog_dump_events = 0; // unlimited
bool
opt_sporadic_binlog_dump_fail
=
0
;
bool
opt_sporadic_binlog_dump_fail
=
0
;
static
int
binlog_dump_count
=
0
;
static
int
binlog_dump_count
=
0
;
#endif
#endif
static
uint32
*
slave_list_key
(
SLAVE_INFO
*
si
,
uint
*
len
,
my_bool
not_used
__attribute__
((
unused
)))
{
*
len
=
4
;
*
len
=
4
;
return
&
si
->
server_id
;
return
&
si
->
server_id
;
}
}
...
@@ -1143,6 +1147,7 @@ static inline int fetch_db_tables(THD* thd, MYSQL* mysql, const char* db,
...
@@ -1143,6 +1147,7 @@ static inline int fetch_db_tables(THD* thd, MYSQL* mysql, const char* db,
table
.
next
=
0
;
table
.
next
=
0
;
table
.
db
=
(
char
*
)
db
;
table
.
db
=
(
char
*
)
db
;
table
.
real_name
=
(
char
*
)
table_name
;
table
.
real_name
=
(
char
*
)
table_name
;
table
.
updating
=
1
;
if
(
!
tables_ok
(
thd
,
&
table
))
if
(
!
tables_ok
(
thd
,
&
table
))
continue
;
continue
;
}
}
...
...
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