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
9a8d3db4
Commit
9a8d3db4
authored
Dec 04, 2006
by
istruewing@chilla.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into chilla.local:/home/mydev/mysql-4.1-axmrg
parents
e6a2d184
ab70ed5e
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
406 additions
and
60 deletions
+406
-60
myisam/mi_check.c
myisam/mi_check.c
+73
-17
myisam/mi_dynrec.c
myisam/mi_dynrec.c
+5
-3
myisam/mi_packrec.c
myisam/mi_packrec.c
+328
-37
sql/sql_insert.cc
sql/sql_insert.cc
+0
-3
No files found.
myisam/mi_check.c
View file @
9a8d3db4
...
...
@@ -251,11 +251,12 @@ static int check_k_link(MI_CHECK *param, register MI_INFO *info, uint nr)
my_off_t
next_link
;
uint
block_size
=
(
nr
+
1
)
*
MI_MIN_KEY_BLOCK_LENGTH
;
ha_rows
records
;
char
llbuff
[
21
],
*
buff
;
char
llbuff
[
21
],
llbuff2
[
21
],
*
buff
;
DBUG_ENTER
(
"check_k_link"
);
DBUG_PRINT
(
"enter"
,
(
"block_size: %u"
,
block_size
));
if
(
param
->
testflag
&
T_VERBOSE
)
printf
(
"block_size %4
d:"
,
block_size
);
printf
(
"block_size %4
u:"
,
block_size
);
/* purecov: tested */
next_link
=
info
->
s
->
state
.
key_del
[
nr
];
records
=
(
ha_rows
)
(
info
->
state
->
key_file_length
/
block_size
);
...
...
@@ -265,14 +266,46 @@ static int check_k_link(MI_CHECK *param, register MI_INFO *info, uint nr)
DBUG_RETURN
(
1
);
if
(
param
->
testflag
&
T_VERBOSE
)
printf
(
"%16s"
,
llstr
(
next_link
,
llbuff
));
if
(
next_link
>
info
->
state
->
key_file_length
||
next_link
&
(
info
->
s
->
blocksize
-
1
))
/* Key blocks must lay within the key file length entirely. */
if
(
next_link
+
block_size
>
info
->
state
->
key_file_length
)
{
/* purecov: begin tested */
mi_check_print_error
(
param
,
"Invalid key block position: %s "
"key block size: %u file_length: %s"
,
llstr
(
next_link
,
llbuff
),
block_size
,
llstr
(
info
->
state
->
key_file_length
,
llbuff2
));
DBUG_RETURN
(
1
);
/* purecov: end */
}
/* Key blocks must be aligned at MI_MIN_KEY_BLOCK_LENGTH. */
if
(
next_link
&
(
MI_MIN_KEY_BLOCK_LENGTH
-
1
))
{
/* purecov: begin tested */
mi_check_print_error
(
param
,
"Mis-aligned key block: %s "
"minimum key block length: %u"
,
llstr
(
next_link
,
llbuff
),
MI_MIN_KEY_BLOCK_LENGTH
);
DBUG_RETURN
(
1
);
/* purecov: end */
}
/*
Read the key block with MI_MIN_KEY_BLOCK_LENGTH to find next link.
If the key cache block size is smaller than block_size, we can so
avoid unecessary eviction of cache block.
*/
if
(
!
(
buff
=
key_cache_read
(
info
->
s
->
key_cache
,
info
->
s
->
kfile
,
next_link
,
DFLT_INIT_HITS
,
(
byte
*
)
info
->
buff
,
myisam_block_size
,
block_size
,
1
)))
(
byte
*
)
info
->
buff
,
MI_MIN_KEY_BLOCK_LENGTH
,
MI_MIN_KEY_BLOCK_LENGTH
,
1
)))
{
/* purecov: begin tested */
mi_check_print_error
(
param
,
"key cache read error for block: %s"
,
llstr
(
next_link
,
llbuff
));
DBUG_RETURN
(
1
);
/* purecov: end */
}
next_link
=
mi_sizekorr
(
buff
);
records
--
;
param
->
key_file_blocks
+=
block_size
;
...
...
@@ -555,17 +588,37 @@ static int chk_index_down(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo,
ha_checksum
*
key_checksum
,
uint
level
)
{
char
llbuff
[
22
],
llbuff2
[
22
];
if
(
page
>
info
->
state
->
key_file_length
||
(
page
&
(
info
->
s
->
blocksize
-
1
)))
{
my_off_t
max_length
=
my_seek
(
info
->
s
->
kfile
,
0L
,
MY_SEEK_END
,
MYF
(
0
));
mi_check_print_error
(
param
,
"Wrong pagepointer: %s at page: %s"
,
llstr
(
page
,
llbuff
),
llstr
(
page
,
llbuff2
));
if
(
page
+
info
->
s
->
blocksize
>
max_length
)
DBUG_ENTER
(
"chk_index_down"
);
/* Key blocks must lay within the key file length entirely. */
if
(
page
+
keyinfo
->
block_length
>
info
->
state
->
key_file_length
)
{
/* purecov: begin tested */
/* Give it a chance to fit in the real file size. */
my_off_t
max_length
=
my_seek
(
info
->
s
->
kfile
,
0L
,
MY_SEEK_END
,
MYF
(
0
));
mi_check_print_error
(
param
,
"Invalid key block position: %s "
"key block size: %u file_length: %s"
,
llstr
(
page
,
llbuff
),
keyinfo
->
block_length
,
llstr
(
info
->
state
->
key_file_length
,
llbuff2
));
if
(
page
+
keyinfo
->
block_length
>
max_length
)
goto
err
;
info
->
state
->
key_file_length
=
(
max_length
&
~
(
my_off_t
)
(
info
->
s
->
blocksize
-
1
));
/* Fix the remebered key file length. */
info
->
state
->
key_file_length
=
(
max_length
&
~
(
my_off_t
)
(
keyinfo
->
block_length
-
1
));
/* purecov: end */
}
/* Key blocks must be aligned at MI_MIN_KEY_BLOCK_LENGTH. */
if
(
page
&
(
MI_MIN_KEY_BLOCK_LENGTH
-
1
))
{
/* purecov: begin tested */
mi_check_print_error
(
param
,
"Mis-aligned key block: %s "
"minimum key block length: %u"
,
llstr
(
page
,
llbuff
),
MI_MIN_KEY_BLOCK_LENGTH
);
goto
err
;
/* purecov: end */
}
if
(
!
_mi_fetch_keypage
(
info
,
keyinfo
,
page
,
DFLT_INIT_HITS
,
buff
,
0
))
{
mi_check_print_error
(
param
,
"Can't read key from filepos: %s"
,
...
...
@@ -576,9 +629,12 @@ static int chk_index_down(MI_CHECK *param, MI_INFO *info, MI_KEYDEF *keyinfo,
if
(
chk_index
(
param
,
info
,
keyinfo
,
page
,
buff
,
keys
,
key_checksum
,
level
))
goto
err
;
return
0
;
DBUG_RETURN
(
0
);
/* purecov: begin tested */
err:
return
1
;
DBUG_RETURN
(
1
);
/* purecov: end */
}
...
...
myisam/mi_dynrec.c
View file @
9a8d3db4
...
...
@@ -992,9 +992,11 @@ ulong _mi_rec_unpack(register MI_INFO *info, register byte *to, byte *from,
{
uint
size_length
=
rec_length
-
mi_portable_sizeof_char_ptr
;
ulong
blob_length
=
_mi_calc_blob_length
(
size_length
,
from
);
if
((
ulong
)
(
from_end
-
from
)
-
size_length
<
blob_length
||
min_pack_length
>
(
uint
)
(
from_end
-
(
from
+
size_length
+
blob_length
)))
goto
err
;
ulong
from_left
=
(
ulong
)
(
from_end
-
from
);
if
(
from_left
<
size_length
||
from_left
-
size_length
<
blob_length
||
from_left
-
size_length
-
blob_length
<
min_pack_length
)
goto
err
;
memcpy
((
byte
*
)
to
,(
byte
*
)
from
,(
size_t
)
size_length
);
from
+=
size_length
;
memcpy_fixed
((
byte
*
)
to
+
size_length
,(
byte
*
)
&
from
,
sizeof
(
char
*
));
...
...
myisam/mi_packrec.c
View file @
9a8d3db4
This diff is collapsed.
Click to expand it.
sql/sql_insert.cc
View file @
9a8d3db4
...
...
@@ -1179,8 +1179,6 @@ void kill_delayed_threads(void)
delayed_insert
*
tmp
;
while
((
tmp
=
it
++
))
{
/* Ensure that the thread doesn't kill itself while we are looking at it */
pthread_mutex_lock
(
&
tmp
->
mutex
);
tmp
->
thd
.
killed
=
1
;
if
(
tmp
->
thd
.
mysys_var
)
{
...
...
@@ -1199,7 +1197,6 @@ void kill_delayed_threads(void)
}
pthread_mutex_unlock
(
&
tmp
->
thd
.
mysys_var
->
mutex
);
}
pthread_mutex_unlock
(
&
tmp
->
mutex
);
}
VOID
(
pthread_mutex_unlock
(
&
LOCK_delayed_insert
));
// For unlink from list
}
...
...
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