summaryrefslogtreecommitdiff
path: root/heap
diff options
context:
space:
mode:
authormonty@mysql.com <>2005-10-25 02:27:40 +0300
committermonty@mysql.com <>2005-10-25 02:27:40 +0300
commit3e653fb922ca6a9b4233cd1d8625031e851d33c5 (patch)
tree56b86b67bce65a21ff4ffd27cd2dd139b110b622 /heap
parentea3ea9ed1001a0f0d0a86297896b465f9d1cbaf8 (diff)
downloadmariadb-git-3e653fb922ca6a9b4233cd1d8625031e851d33c5.tar.gz
Added more tests for new UPDATE ... ORDER BY ... LIMIT optimization
Diffstat (limited to 'heap')
-rw-r--r--heap/_check.c4
-rw-r--r--heap/hp_create.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/heap/_check.c b/heap/_check.c
index a745aee48bf..ad432856a69 100644
--- a/heap/_check.c
+++ b/heap/_check.c
@@ -167,7 +167,7 @@ static int check_one_rb_key(HP_INFO *info, uint keynr, ulong records,
ulong found= 0;
byte *key, *recpos;
uint key_length;
- uint not_used;
+ uint not_used[2];
if ((key= tree_search_edge(&keydef->rb_tree, info->parents,
&info->last_pos, offsetof(TREE_ELEMENT, left))))
@@ -177,7 +177,7 @@ static int check_one_rb_key(HP_INFO *info, uint keynr, ulong records,
memcpy(&recpos, key + (*keydef->get_key_length)(keydef,key), sizeof(byte*));
key_length= hp_rb_make_key(keydef, info->recbuf, recpos, 0);
if (ha_key_cmp(keydef->seg, (uchar*) info->recbuf, (uchar*) key,
- key_length, SEARCH_FIND | SEARCH_SAME, &not_used))
+ key_length, SEARCH_FIND | SEARCH_SAME, not_used))
{
error= 1;
DBUG_PRINT("error",("Record in wrong link: key: %d Record: %lx\n",
diff --git a/heap/hp_create.c b/heap/hp_create.c
index af32fefea1b..2b811dac89b 100644
--- a/heap/hp_create.c
+++ b/heap/hp_create.c
@@ -170,9 +170,9 @@ int heap_create(const char *name, uint keys, HP_KEYDEF *keydef,
static int keys_compare(heap_rb_param *param, uchar *key1, uchar *key2)
{
- uint not_used;
+ uint not_used[2];
return ha_key_cmp(param->keyseg, key1, key2, param->key_length,
- param->search_flag, &not_used);
+ param->search_flag, not_used);
}
static void init_block(HP_BLOCK *block, uint reclength, ulong min_records,