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
cb817476
Commit
cb817476
authored
Jan 10, 2007
by
malff/marcsql@weblab.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge malff@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime
into weblab.(none):/home/marcsql/TREE/mysql-5.1-25302
parents
4cae0119
067b80a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
6 deletions
+13
-6
sql/item_func.cc
sql/item_func.cc
+3
-2
storage/heap/hp_block.c
storage/heap/hp_block.c
+1
-1
storage/heap/hp_write.c
storage/heap/hp_write.c
+9
-3
No files found.
sql/item_func.cc
View file @
cb817476
...
...
@@ -3682,8 +3682,9 @@ update_hash(user_var_entry *entry, bool set_null, void *ptr, uint length,
char
*
pos
=
(
char
*
)
entry
+
ALIGN_SIZE
(
sizeof
(
user_var_entry
));
if
(
entry
->
value
==
pos
)
entry
->
value
=
0
;
if
(
!
(
entry
->
value
=
(
char
*
)
my_realloc
(
entry
->
value
,
length
,
MYF
(
MY_ALLOW_ZERO_PTR
))))
entry
->
value
=
(
char
*
)
my_realloc
(
entry
->
value
,
length
,
MYF
(
MY_ALLOW_ZERO_PTR
|
MY_WME
));
if
(
!
entry
->
value
)
return
1
;
}
}
...
...
storage/heap/hp_block.c
View file @
cb817476
...
...
@@ -75,7 +75,7 @@ int hp_get_new_block(HP_BLOCK *block, ulong *alloc_length)
and my_default_record_cache_size we get about 1/128 unused memory.
*/
*
alloc_length
=
sizeof
(
HP_PTRS
)
*
i
+
block
->
records_in_block
*
block
->
recbuffer
;
if
(
!
(
root
=
(
HP_PTRS
*
)
my_malloc
(
*
alloc_length
,
MYF
(
0
))))
if
(
!
(
root
=
(
HP_PTRS
*
)
my_malloc
(
*
alloc_length
,
MYF
(
MY_WME
))))
return
1
;
if
(
i
==
0
)
...
...
storage/heap/hp_write.c
View file @
cb817476
...
...
@@ -67,11 +67,17 @@ int heap_write(HP_INFO *info, const byte *record)
DBUG_RETURN
(
0
);
err:
DBUG_PRINT
(
"info"
,(
"Duplicate key: %d"
,
(
int
)
(
keydef
-
share
->
keydef
)));
if
(
my_errno
==
HA_ERR_FOUND_DUPP_KEY
)
DBUG_PRINT
(
"info"
,(
"Duplicate key: %d"
,
(
int
)
(
keydef
-
share
->
keydef
)));
info
->
errkey
=
keydef
-
share
->
keydef
;
if
(
keydef
->
algorithm
==
HA_KEY_ALG_BTREE
)
/*
We don't need to delete non-inserted key from rb-tree. Also, if
we got ENOMEM, the key wasn't inserted, so don't try to delete it
either. Otherwise for HASH index on HA_ERR_FOUND_DUPP_KEY the key
was inserted and we have to delete it.
*/
if
(
keydef
->
algorithm
==
HA_KEY_ALG_BTREE
||
my_errno
==
ENOMEM
)
{
/* we don't need to delete non-inserted key from rb-tree */
keydef
--
;
}
while
(
keydef
>=
share
->
keydef
)
...
...
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