mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
s/ha_store_ptr/my_store_ptr/
s/ha_get_ptr/my_get_ptr/
This commit is contained in:
parent
cce44b148c
commit
eba2f5bc9a
7 changed files with 52 additions and 11 deletions
|
|
@ -190,7 +190,7 @@ int ha_myisammrg::rnd_next(byte *buf)
|
|||
int ha_myisammrg::rnd_pos(byte * buf, byte *pos)
|
||||
{
|
||||
statistic_increment(current_thd->status_var.ha_read_rnd_count,&LOCK_status);
|
||||
int error=myrg_rrnd(file, buf, ha_get_ptr(pos,ref_length));
|
||||
int error=myrg_rrnd(file, buf, my_get_ptr(pos,ref_length));
|
||||
table->status=error ? STATUS_NOT_FOUND: 0;
|
||||
return error;
|
||||
}
|
||||
|
|
@ -198,7 +198,7 @@ int ha_myisammrg::rnd_pos(byte * buf, byte *pos)
|
|||
void ha_myisammrg::position(const byte *record)
|
||||
{
|
||||
ulonglong position= myrg_position(file);
|
||||
ha_store_ptr(ref, ref_length, (my_off_t) position);
|
||||
my_store_ptr(ref, ref_length, (my_off_t) position);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue