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
30cbba45
Commit
30cbba45
authored
Jul 08, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge chilla.local:/home/mydev/mysql-4.0
into chilla.local:/home/mydev/mysql-4.0-bug14400
parents
92ce7df1
7aa26e26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
5 deletions
+17
-5
myisam/mi_rkey.c
myisam/mi_rkey.c
+14
-2
sql/sql_class.cc
sql/sql_class.cc
+3
-3
No files found.
myisam/mi_rkey.c
View file @
30cbba45
...
@@ -66,6 +66,7 @@ int mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
...
@@ -66,6 +66,7 @@ int mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
if
(
fast_mi_readinfo
(
info
))
if
(
fast_mi_readinfo
(
info
))
goto
err
;
goto
err
;
if
(
share
->
concurrent_insert
)
if
(
share
->
concurrent_insert
)
rw_rdlock
(
&
share
->
key_root_lock
[
inx
]);
rw_rdlock
(
&
share
->
key_root_lock
[
inx
]);
...
@@ -77,14 +78,24 @@ int mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
...
@@ -77,14 +78,24 @@ int mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
if
(
!
_mi_search
(
info
,
keyinfo
,
key_buff
,
use_key_length
,
if
(
!
_mi_search
(
info
,
keyinfo
,
key_buff
,
use_key_length
,
myisam_read_vec
[
search_flag
],
info
->
s
->
state
.
key_root
[
inx
]))
myisam_read_vec
[
search_flag
],
info
->
s
->
state
.
key_root
[
inx
]))
{
{
while
(
info
->
lastpos
>=
info
->
state
->
data_file_length
)
/*
If we are searching for an exact key (including the data pointer)
and this was added by an concurrent insert,
then the result is "key not found".
*/
if
((
search_flag
==
HA_READ_KEY_EXACT
)
&&
(
info
->
lastpos
>=
info
->
state
->
data_file_length
))
{
my_errno
=
HA_ERR_KEY_NOT_FOUND
;
info
->
lastpos
=
HA_OFFSET_ERROR
;
}
else
while
(
info
->
lastpos
>=
info
->
state
->
data_file_length
)
{
{
/*
/*
Skip rows that are inserted by other threads since we got a lock
Skip rows that are inserted by other threads since we got a lock
Note that this can only happen if we are not searching after an
Note that this can only happen if we are not searching after an
exact key, because the keys are sorted according to position
exact key, because the keys are sorted according to position
*/
*/
if
(
_mi_search_next
(
info
,
keyinfo
,
info
->
lastkey
,
if
(
_mi_search_next
(
info
,
keyinfo
,
info
->
lastkey
,
info
->
lastkey_length
,
info
->
lastkey_length
,
myisam_readnext_vec
[
search_flag
],
myisam_readnext_vec
[
search_flag
],
...
@@ -92,6 +103,7 @@ int mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
...
@@ -92,6 +103,7 @@ int mi_rkey(MI_INFO *info, byte *buf, int inx, const byte *key, uint key_len,
break
;
break
;
}
}
}
}
if
(
share
->
concurrent_insert
)
if
(
share
->
concurrent_insert
)
rw_unlock
(
&
share
->
key_root_lock
[
inx
]);
rw_unlock
(
&
share
->
key_root_lock
[
inx
]);
...
...
sql/sql_class.cc
View file @
30cbba45
...
@@ -477,7 +477,7 @@ bool select_send::send_data(List<Item> &items)
...
@@ -477,7 +477,7 @@ bool select_send::send_data(List<Item> &items)
{
{
List_iterator_fast
<
Item
>
li
(
items
);
List_iterator_fast
<
Item
>
li
(
items
);
String
*
packet
=
&
thd
->
packet
;
String
*
packet
=
&
thd
->
packet
;
DBUG_ENTER
(
"send_data"
);
DBUG_ENTER
(
"se
lect_send::se
nd_data"
);
#ifdef HAVE_INNOBASE_DB
#ifdef HAVE_INNOBASE_DB
/* We may be passing the control from mysqld to the client: release the
/* We may be passing the control from mysqld to the client: release the
...
@@ -611,7 +611,7 @@ select_export::prepare(List<Item> &list)
...
@@ -611,7 +611,7 @@ select_export::prepare(List<Item> &list)
bool
select_export
::
send_data
(
List
<
Item
>
&
items
)
bool
select_export
::
send_data
(
List
<
Item
>
&
items
)
{
{
DBUG_ENTER
(
"send_data"
);
DBUG_ENTER
(
"se
lect_export::se
nd_data"
);
char
buff
[
MAX_FIELD_WIDTH
],
null_buff
[
2
],
space
[
MAX_FIELD_WIDTH
];
char
buff
[
MAX_FIELD_WIDTH
],
null_buff
[
2
],
space
[
MAX_FIELD_WIDTH
];
bool
space_inited
=
0
;
bool
space_inited
=
0
;
String
tmp
(
buff
,
sizeof
(
buff
)),
*
res
;
String
tmp
(
buff
,
sizeof
(
buff
)),
*
res
;
...
@@ -828,7 +828,7 @@ bool select_dump::send_data(List<Item> &items)
...
@@ -828,7 +828,7 @@ bool select_dump::send_data(List<Item> &items)
String
tmp
(
buff
,
sizeof
(
buff
)),
*
res
;
String
tmp
(
buff
,
sizeof
(
buff
)),
*
res
;
tmp
.
length
(
0
);
tmp
.
length
(
0
);
Item
*
item
;
Item
*
item
;
DBUG_ENTER
(
"send_data"
);
DBUG_ENTER
(
"se
lect_dump::se
nd_data"
);
if
(
thd
->
offset_limit
)
if
(
thd
->
offset_limit
)
{
// using limit offset,count
{
// using limit offset,count
...
...
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