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
d72c7984
Commit
d72c7984
authored
Feb 10, 2004
by
greg@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge gweir@bk-internal.mysql.com:/home/bk/mysql-4.0
into mysql.com:/bk/mysql-4.0
parents
2f711c88
efb134f3
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
228 additions
and
85 deletions
+228
-85
BUILD/Makefile.am
BUILD/Makefile.am
+1
-0
client/mysqlbinlog.cc
client/mysqlbinlog.cc
+155
-81
configure.in
configure.in
+1
-1
innobase/dict/dict0dict.c
innobase/dict/dict0dict.c
+18
-0
innobase/include/dict0dict.h
innobase/include/dict0dict.h
+9
-0
innobase/row/row0mysql.c
innobase/row/row0mysql.c
+7
-0
sql/ha_innodb.cc
sql/ha_innodb.cc
+22
-1
sql/ha_innodb.h
sql/ha_innodb.h
+1
-0
sql/handler.h
sql/handler.h
+3
-0
sql/sql_insert.cc
sql/sql_insert.cc
+11
-2
No files found.
BUILD/Makefile.am
View file @
d72c7984
...
...
@@ -37,6 +37,7 @@ EXTRA_DIST = FINISH.sh \
compile-pentium-pgcc
\
compile-solaris-sparc
\
compile-solaris-sparc-debug
\
compile-irix-mips64-mipspro
\
compile-solaris-sparc-forte
\
compile-solaris-sparc-purify
...
...
client/mysqlbinlog.cc
View file @
d72c7984
...
...
@@ -59,13 +59,14 @@ static MYSQL* mysql = NULL;
static
const
char
*
dirname_for_local_load
=
0
;
static
void
dump_local_log_entries
(
const
char
*
logname
);
static
void
dump_remote_log_entries
(
const
char
*
logname
);
static
void
dump_log_entries
(
const
char
*
logname
);
static
void
dump_remote_file
(
NET
*
net
,
const
char
*
fname
);
static
int
dump_local_log_entries
(
const
char
*
logname
);
static
int
dump_remote_log_entries
(
const
char
*
logname
);
static
int
dump_log_entries
(
const
char
*
logname
);
static
int
dump_remote_file
(
NET
*
net
,
const
char
*
fname
);
static
void
die
(
const
char
*
fmt
,
...);
static
MYSQL
*
safe_connect
();
class
Load_log_processor
{
char
target_dir_name
[
MY_NFILE
];
...
...
@@ -150,39 +151,14 @@ class Load_log_processor
return
res
;
}
int
process
(
Create_file_log_event
*
ce
);
int
process
(
Append_block_log_event
*
ae
)
{
File
file
;
Create_file_log_event
*
ce
=
(
ae
->
file_id
<
file_names
.
elements
)
?
*
((
Create_file_log_event
**
)
file_names
.
buffer
+
ae
->
file_id
)
:
0
;
if
(
ce
)
{
if
(((
file
=
my_open
(
ce
->
fname
,
O_APPEND
|
O_BINARY
|
O_WRONLY
,
MYF
(
MY_WME
)))
<
0
)
||
my_write
(
file
,(
byte
*
)
ae
->
block
,
ae
->
block_len
,
MYF
(
MY_WME
|
MY_NABP
))
||
my_close
(
file
,
MYF
(
MY_WME
)))
return
-
1
;
}
else
{
/*
There is no Create_file event (a bad binlog or a big
--position). Assuming it's a big --position, we just do nothing and
print a warning.
*/
fprintf
(
stderr
,
"Warning: ignoring Append_block as there is no \
Create_file event for file_id: %u
\n
"
,
ae
->
file_id
);
return
-
1
;
}
return
0
;
}
int
process
(
Append_block_log_event
*
ae
);
File
prepare_new_file_for_old_format
(
Load_log_event
*
le
,
char
*
filename
);
int
load_old_format_file
(
NET
*
net
,
const
char
*
server_fname
,
uint
server_fname_len
,
File
file
);
};
File
Load_log_processor
::
prepare_new_file_for_old_format
(
Load_log_event
*
le
,
char
*
filename
)
{
...
...
@@ -205,6 +181,7 @@ File Load_log_processor::prepare_new_file_for_old_format(Load_log_event *le,
return
file
;
}
int
Load_log_processor
::
load_old_format_file
(
NET
*
net
,
const
char
*
server_fname
,
uint
server_fname_len
,
File
file
)
{
...
...
@@ -248,21 +225,24 @@ int Load_log_processor::load_old_format_file(NET* net, const char*server_fname,
return
0
;
}
int
Load_log_processor
::
process
(
Create_file_log_event
*
ce
)
{
const
char
*
bname
=
ce
->
fname
+
dirname_length
(
ce
->
fname
);
uint
blen
=
ce
->
fname_len
-
(
bname
-
ce
->
fname
);
uint
full_len
=
target_dir_name_len
+
blen
+
9
+
9
+
1
;
int
error
=
0
;
char
*
fname
,
*
ptr
;
File
file
;
if
(
!
(
fname
=
my_malloc
(
full_len
,
MYF
(
MY_WME
)))
||
set_dynamic
(
&
file_names
,(
gptr
)
&
ce
,
ce
->
file_id
))
if
(
set_dynamic
(
&
file_names
,(
gptr
)
&
ce
,
ce
->
file_id
))
{
sql_print_error
(
"Could not construct local filename %s%s"
,
target_dir_name
,
bname
);
return
-
1
;
}
if
(
!
(
fname
=
my_malloc
(
full_len
,
MYF
(
MY_WME
))))
return
-
1
;
memcpy
(
fname
,
target_dir_name
,
target_dir_name_len
);
ptr
=
fname
+
target_dir_name_len
;
...
...
@@ -278,15 +258,51 @@ int Load_log_processor::process(Create_file_log_event *ce)
}
ce
->
set_fname_outside_temp_buf
(
fname
,
strlen
(
fname
));
if
(
my_write
(
file
,(
byte
*
)
ce
->
block
,
ce
->
block_len
,
MYF
(
MY_WME
|
MY_NABP
))
||
my_close
(
file
,
MYF
(
MY_WME
)))
return
-
1
;
if
(
my_write
(
file
,(
byte
*
)
ce
->
block
,
ce
->
block_len
,
MYF
(
MY_WME
|
MY_NABP
)))
error
=
-
1
;
if
(
my_close
(
file
,
MYF
(
MY_WME
)))
error
=
-
1
;
return
error
;
}
int
Load_log_processor
::
process
(
Append_block_log_event
*
ae
)
{
Create_file_log_event
*
ce
=
((
ae
->
file_id
<
file_names
.
elements
)
?
*
((
Create_file_log_event
**
)
file_names
.
buffer
+
ae
->
file_id
)
:
0
);
if
(
ce
)
{
File
file
;
int
error
=
0
;
if
(((
file
=
my_open
(
ce
->
fname
,
O_APPEND
|
O_BINARY
|
O_WRONLY
,
MYF
(
MY_WME
)))
<
0
))
return
-
1
;
if
(
my_write
(
file
,(
byte
*
)
ae
->
block
,
ae
->
block_len
,
MYF
(
MY_WME
|
MY_NABP
)))
error
=
-
1
;
if
(
my_close
(
file
,
MYF
(
MY_WME
)))
error
=
-
1
;
return
error
;
}
/*
There is no Create_file event (a bad binlog or a big
--position). Assuming it's a big --position, we just do nothing and
print a warning.
*/
fprintf
(
stderr
,
"Warning: ignoring Append_block as there is no \
Create_file event for file_id: %u
\n
"
,
ae
->
file_id
);
return
-
1
;
}
Load_log_processor
load_processor
;
void
process_event
(
ulonglong
*
rec_count
,
char
*
last_db
,
Log_event
*
ev
,
my_off_t
pos
,
int
old_format
)
int
process_event
(
ulonglong
*
rec_count
,
char
*
last_db
,
Log_event
*
ev
,
my_off_t
pos
,
int
old_format
)
{
char
ll_buff
[
21
];
if
((
*
rec_count
)
>=
offset
)
...
...
@@ -303,7 +319,7 @@ void process_event(ulonglong *rec_count, char *last_db, Log_event *ev,
{
(
*
rec_count
)
++
;
delete
ev
;
return
;
// nex
t
return
0
;
// Time for next even
t
}
}
ev
->
print
(
result_file
,
short_form
,
last_db
);
...
...
@@ -324,7 +340,7 @@ void process_event(ulonglong *rec_count, char *last_db, Log_event *ev,
{
(
*
rec_count
)
++
;
delete
ev
;
return
;
// next
return
0
;
// next
}
}
/*
...
...
@@ -337,14 +353,16 @@ void process_event(ulonglong *rec_count, char *last_db, Log_event *ev,
ce
->
print
(
result_file
,
short_form
,
last_db
,
true
);
if
(
!
old_format
)
{
load_processor
.
process
(
ce
);
if
(
load_processor
.
process
(
ce
))
break
;
// Error
ev
=
0
;
}
break
;
}
case
APPEND_BLOCK_EVENT
:
ev
->
print
(
result_file
,
short_form
,
last_db
);
load_processor
.
process
((
Append_block_log_event
*
)
ev
);
if
(
load_processor
.
process
((
Append_block_log_event
*
)
ev
))
break
;
// Error
break
;
case
EXEC_LOAD_EVENT
:
{
...
...
@@ -374,8 +392,10 @@ Create_file event for file_id: %u\n",exv->file_id);
(
*
rec_count
)
++
;
if
(
ev
)
delete
ev
;
return
0
;
}
static
struct
my_option
my_long_options
[]
=
{
#ifndef DBUG_OFF
...
...
@@ -545,14 +565,15 @@ static MYSQL* safe_connect()
return
local_mysql
;
}
static
void
dump_log_entries
(
const
char
*
logname
)
static
int
dump_log_entries
(
const
char
*
logname
)
{
if
(
remote_opt
)
dump_remote_log_entries
(
logname
);
else
dump_local_log_entries
(
logname
);
return
dump_remote_log_entries
(
logname
);
return
dump_local_log_entries
(
logname
);
}
static
int
check_master_version
(
MYSQL
*
mysql
)
{
MYSQL_RES
*
res
=
0
;
...
...
@@ -601,7 +622,7 @@ static int check_master_version(MYSQL* mysql)
}
static
void
dump_remote_log_entries
(
const
char
*
logname
)
static
int
dump_remote_log_entries
(
const
char
*
logname
)
{
char
buf
[
128
];
char
last_db
[
FN_REFLEN
+
1
]
=
""
;
...
...
@@ -615,7 +636,7 @@ static void dump_remote_log_entries(const char* logname)
if
(
position
<
BIN_LOG_HEADER_SIZE
)
{
position
=
BIN_LOG_HEADER_SIZE
;
// warn the
guity
// warn the
user
sql_print_error
(
"Warning: The position in the binary log can't be less than %d.
\n
Starting from position %d
\n
"
,
BIN_LOG_HEADER_SIZE
,
BIN_LOG_HEADER_SIZE
);
}
int4store
(
buf
,
position
);
...
...
@@ -624,7 +645,10 @@ static void dump_remote_log_entries(const char* logname)
int4store
(
buf
+
6
,
0
);
memcpy
(
buf
+
10
,
logname
,
len
);
if
(
simple_command
(
mysql
,
COM_BINLOG_DUMP
,
buf
,
len
+
10
,
1
))
die
(
"Error sending the log dump command"
);
{
fprintf
(
stderr
,
"Got fatal error sending the log dump command
\n
"
);
return
1
;
}
my_off_t
old_off
=
0
;
ulonglong
rec_count
=
0
;
...
...
@@ -635,7 +659,11 @@ static void dump_remote_log_entries(const char* logname)
const
char
*
error
;
len
=
net_safe_read
(
mysql
);
if
(
len
==
packet_error
)
die
(
"Error reading packet from server: %s"
,
mysql_error
(
mysql
));
{
fprintf
(
stderr
,
"Got error reading packet from server: %s
\n
"
,
mysql_error
(
mysql
));
return
1
;
}
if
(
len
<
8
&&
net
->
read_pos
[
0
]
==
254
)
break
;
// end of data
DBUG_PRINT
(
"info"
,(
"len= %u, net->read_pos[5] = %d
\n
"
,
...
...
@@ -644,39 +672,48 @@ static void dump_remote_log_entries(const char* logname)
len
-
1
,
&
error
,
old_format
);
if
(
!
ev
)
{
die
(
"Could not construct log event object"
);
fprintf
(
stderr
,
"Could not construct log event object
\n
"
);
return
1
;
}
Log_event_type
type
=
ev
->
get_type_code
();
if
(
!
old_format
||
(
type
!=
LOAD_EVENT
&&
type
!=
CREATE_FILE_EVENT
))
{
if
(
process_event
(
&
rec_count
,
last_db
,
ev
,
old_off
,
old_format
))
return
1
;
}
else
{
Log_event_type
type
=
ev
->
get_type_code
();
if
(
!
old_format
||
(
type
!=
LOAD_EVENT
&&
type
!=
CREATE_FILE_EVENT
)
)
Load_log_event
*
le
=
(
Load_log_event
*
)
ev
;
const
char
*
old_fname
=
le
->
fname
;
uint
old_len
=
le
->
fname_len
;
File
file
;
if
((
file
=
load_processor
.
prepare_new_file_for_old_format
(
le
,
fname
))
<
0
)
return
1
;
if
(
process_event
(
&
rec_count
,
last_db
,
ev
,
old_off
,
old_format
))
{
process_event
(
&
rec_count
,
last_db
,
ev
,
old_off
,
old_format
);
my_close
(
file
,
MYF
(
MY_WME
));
return
1
;
}
else
if
(
load_processor
.
load_old_format_file
(
net
,
old_fname
,
old_len
,
file
))
{
Load_log_event
*
le
=
(
Load_log_event
*
)
ev
;
const
char
*
old_fname
=
le
->
fname
;
uint
old_len
=
le
->
fname_len
;
File
file
=
load_processor
.
prepare_new_file_for_old_format
(
le
,
fname
);
if
(
file
>=
0
)
{
process_event
(
&
rec_count
,
last_db
,
ev
,
old_off
,
old_format
);
load_processor
.
load_old_format_file
(
net
,
old_fname
,
old_len
,
file
);
my_close
(
file
,
MYF
(
MY_WME
));
}
my_close
(
file
,
MYF
(
MY_WME
));
return
1
;
}
my_close
(
file
,
MYF
(
MY_WME
));
}
/*
Let's adjust offset for remote log as for local log to produce
similar text..
Let's adjust offset for remote log as for local log to produce
similar text..
*/
if
(
old_off
)
old_off
+=
len
-
1
;
else
old_off
=
BIN_LOG_HEADER_SIZE
;
}
return
0
;
}
...
...
@@ -706,7 +743,7 @@ static int check_header(IO_CACHE* file)
}
static
void
dump_local_log_entries
(
const
char
*
logname
)
static
int
dump_local_log_entries
(
const
char
*
logname
)
{
File
fd
=
-
1
;
IO_CACHE
cache
,
*
file
=
&
cache
;
...
...
@@ -714,23 +751,27 @@ static void dump_local_log_entries(const char* logname)
char
last_db
[
FN_REFLEN
+
1
];
byte
tmp_buff
[
BIN_LOG_HEADER_SIZE
];
bool
old_format
=
0
;
int
error
=
0
;
last_db
[
0
]
=
0
;
last_db
[
0
]
=
0
;
if
(
logname
&&
logname
[
0
]
!=
'-'
)
{
if
((
fd
=
my_open
(
logname
,
O_RDONLY
|
O_BINARY
,
MYF
(
MY_WME
)))
<
0
)
exit
(
1
)
;
return
1
;
if
(
init_io_cache
(
file
,
fd
,
0
,
READ_CACHE
,
(
my_off_t
)
position
,
0
,
MYF
(
MY_WME
|
MY_NABP
)))
{
my_close
(
fd
,
MYF
(
MY_WME
));
exit
(
1
);
}
old_format
=
check_header
(
file
);
}
else
{
if
(
init_io_cache
(
file
,
fileno
(
result_file
),
0
,
READ_CACHE
,
(
my_off_t
)
0
,
0
,
MYF
(
MY_WME
|
MY_NABP
|
MY_DONT_CHECK_FILESIZE
)))
exit
(
1
)
;
return
1
;
old_format
=
check_header
(
file
);
if
(
position
)
{
...
...
@@ -741,7 +782,10 @@ static void dump_local_log_entries(const char* logname)
{
tmp
=
min
(
length
,
sizeof
(
buff
));
if
(
my_b_read
(
file
,
buff
,
(
uint
)
tmp
))
exit
(
1
);
{
error
=
1
;
goto
end
;
}
}
}
file
->
pos_in_file
=
position
;
...
...
@@ -749,7 +793,15 @@ static void dump_local_log_entries(const char* logname)
}
if
(
!
position
)
my_b_read
(
file
,
tmp_buff
,
BIN_LOG_HEADER_SIZE
);
// Skip header
{
// Skip header
if
(
my_b_read
(
file
,
tmp_buff
,
BIN_LOG_HEADER_SIZE
))
{
error
=
1
;
goto
end
;
}
}
for
(;;)
{
char
llbuff
[
21
];
...
...
@@ -759,19 +811,31 @@ static void dump_local_log_entries(const char* logname)
if
(
!
ev
)
{
if
(
file
->
error
)
die
(
"\
Could not read entry at offset %s : Error in log format or read error"
,
llstr
(
old_off
,
llbuff
));
{
fprintf
(
stderr
,
"Could not read entry at offset %s:"
"Error in log format or read error
\n
"
,
llstr
(
old_off
,
llbuff
));
error
=
1
;
}
// file->error == 0 means EOF, that's OK, we break in this case
break
;
}
process_event
(
&
rec_count
,
last_db
,
ev
,
old_off
,
false
);
if
(
process_event
(
&
rec_count
,
last_db
,
ev
,
old_off
,
false
))
{
error
=
1
;
break
;
}
}
end:
if
(
fd
>=
0
)
my_close
(
fd
,
MYF
(
MY_WME
));
end_io_cache
(
file
);
return
error
;
}
#if MYSQL_VERSION_ID < 40101
typedef
struct
st_my_tmpdir
...
...
@@ -842,9 +906,11 @@ void free_tmpdir(MY_TMPDIR *tmpdir)
#endif
int
main
(
int
argc
,
char
**
argv
)
{
static
char
**
defaults_argv
;
int
exit_value
;
MY_INIT
(
argv
[
0
]);
parse_args
(
&
argc
,
(
char
***
)
&
argv
);
...
...
@@ -854,7 +920,7 @@ int main(int argc, char** argv)
{
usage
();
free_defaults
(
defaults_argv
);
return
-
1
;
exit
(
1
)
;
}
if
(
remote_opt
)
...
...
@@ -874,8 +940,15 @@ int main(int argc, char** argv)
else
load_processor
.
init_by_cur_dir
();
exit_value
=
0
;
while
(
--
argc
>=
0
)
dump_log_entries
(
*
(
argv
++
));
{
if
(
dump_log_entries
(
*
(
argv
++
)))
{
exit_value
=
1
;
break
;
}
}
if
(
tmpdir
.
list
)
free_tmpdir
(
&
tmpdir
);
...
...
@@ -886,7 +959,8 @@ int main(int argc, char** argv)
cleanup
();
free_defaults
(
defaults_argv
);
my_end
(
0
);
return
0
;
exit
(
exit_value
);
return
exit_value
;
// Keep compilers happy
}
/*
...
...
configure.in
View file @
d72c7984
...
...
@@ -348,7 +348,7 @@ AC_SUBST(CXXFLAGS)
AC_SUBST
(
LD
)
AC_SUBST
(
INSTALL_SCRIPT
)
export
CC C
FLAGS LD LDFLAGS
export
CC C
XX CFLAGS LD LDFLAGS AR
if
test
"
$GXX
"
=
"yes"
then
...
...
innobase/dict/dict0dict.c
View file @
d72c7984
...
...
@@ -1845,6 +1845,24 @@ dict_index_build_internal_non_clust(
/*====================== FOREIGN KEY PROCESSING ========================*/
/*************************************************************************
Checks if a table is referenced by foreign keys. */
ibool
dict_table_referenced_by_foreign_key
(
/*=================================*/
/* out: TRUE if table is referenced by a
foreign key */
dict_table_t
*
table
)
/* in: InnoDB table */
{
if
(
UT_LIST_GET_LEN
(
table
->
referenced_list
)
>
0
)
{
return
(
TRUE
);
}
return
(
FALSE
);
}
/*************************************************************************
Frees a foreign key struct. */
static
...
...
innobase/include/dict0dict.h
View file @
d72c7984
...
...
@@ -206,6 +206,15 @@ dict_foreign_add_to_cache(
/* out: DB_SUCCESS or error code */
dict_foreign_t
*
foreign
);
/* in, own: foreign key constraint */
/*************************************************************************
Checks if a table is referenced by foreign keys. */
ibool
dict_table_referenced_by_foreign_key
(
/*=================================*/
/* out: TRUE if table is referenced by a
foreign key */
dict_table_t
*
table
);
/* in: InnoDB table */
/*************************************************************************
Scans a table create SQL string and adds to the data dictionary
the foreign key constraints declared in the string. This function
should be called after the indexes for a table have been created.
...
...
innobase/row/row0mysql.c
View file @
d72c7984
...
...
@@ -1997,8 +1997,15 @@ row_drop_table_for_mysql(
goto
funct_exit
;
}
/* Check if the table is referenced by foreign key constraints from
some other table (not the table itself) */
foreign
=
UT_LIST_GET_FIRST
(
table
->
referenced_list
);
while
(
foreign
&&
foreign
->
foreign_table
==
table
)
{
foreign
=
UT_LIST_GET_NEXT
(
referenced_list
,
foreign
);
}
if
(
foreign
&&
trx
->
check_foreigns
)
{
char
*
buf
=
dict_foreign_err_buf
;
...
...
sql/ha_innodb.cc
View file @
d72c7984
...
...
@@ -4289,7 +4289,28 @@ ha_innobase::get_foreign_key_create_info(void)
prebuilt
->
trx
->
op_info
=
(
char
*
)
""
;
return
(
str
);
}
}
/***********************************************************************
Checks if a table is referenced by a foreign key. The MySQL manual states that
a REPLACE is either equivalent to an INSERT, or DELETE(s) + INSERT. Only a
delete is then allowed internally to resolve a duplicate key conflict in
REPLACE, not an update. */
uint
ha_innobase
::
referenced_by_foreign_key
(
void
)
/*========================================*/
/* out: > 0 if referenced by a FOREIGN KEY */
{
row_prebuilt_t
*
prebuilt
=
(
row_prebuilt_t
*
)
innobase_prebuilt
;
if
(
dict_table_referenced_by_foreign_key
(
prebuilt
->
table
))
{
return
(
1
);
}
return
(
0
);
}
/***********************************************************************
Frees the foreign key create info for a table stored in InnoDB, if it is
...
...
sql/ha_innodb.h
View file @
d72c7984
...
...
@@ -179,6 +179,7 @@ class ha_innobase: public handler
int
check
(
THD
*
thd
,
HA_CHECK_OPT
*
check_opt
);
char
*
update_table_comment
(
const
char
*
comment
);
char
*
get_foreign_key_create_info
();
uint
referenced_by_foreign_key
();
void
free_foreign_key_create_info
(
char
*
str
);
THR_LOCK_DATA
**
store_lock
(
THD
*
thd
,
THR_LOCK_DATA
**
to
,
enum
thr_lock_type
lock_type
);
...
...
sql/handler.h
View file @
d72c7984
...
...
@@ -319,6 +319,9 @@ class handler :public Sql_alloc
virtual
void
append_create_info
(
String
*
packet
)
{}
virtual
char
*
get_foreign_key_create_info
()
{
return
(
NULL
);}
/* gets foreign key create string from InnoDB */
/* used in REPLACE; is > 0 if table is referred by a FOREIGN KEY */
virtual
uint
referenced_by_foreign_key
()
{
return
0
;}
virtual
void
init_table_handle_for_HANDLER
()
{
return
;
}
/* prepare InnoDB for HANDLER */
virtual
void
free_foreign_key_create_info
(
char
*
str
)
{}
...
...
sql/sql_insert.cc
View file @
d72c7984
...
...
@@ -438,11 +438,20 @@ int write_record(TABLE *table,COPY_INFO *info)
key_copy
((
byte
*
)
key
,
table
,
key_nr
,
0
);
if
((
error
=
(
table
->
file
->
index_read_idx
(
table
->
record
[
1
],
key_nr
,
(
byte
*
)
key
,
table
->
key_info
[
key_nr
].
key_length
,
table
->
key_info
[
key_nr
].
key_length
,
HA_READ_KEY_EXACT
))))
goto
err
;
}
if
(
last_uniq_key
(
table
,
key_nr
))
/*
The manual defines the REPLACE semantics that it is either an INSERT or
DELETE(s) + INSERT; FOREIGN KEY checks do not function in the defined
way if we allow MySQL to convert the latter operation internally to an
UPDATE.
*/
if
(
last_uniq_key
(
table
,
key_nr
)
&&
!
table
->
file
->
referenced_by_foreign_key
())
{
if
((
error
=
table
->
file
->
update_row
(
table
->
record
[
1
],
table
->
record
[
0
])))
goto
err
;
...
...
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