diff options
author | unknown <serg@serg.mylan> | 2004-11-07 22:39:27 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-07 22:39:27 +0100 |
commit | eba2f5bc9ae58bc0c9107fdf569758f5bb0e0b1a (patch) | |
tree | 21cfbec56aed1543b9eb0098b188565895034f18 /sql/ha_myisammrg.cc | |
parent | cce44b148c88be9cecf4e4976d39d16f779cebb7 (diff) | |
download | mariadb-git-eba2f5bc9ae58bc0c9107fdf569758f5bb0e0b1a.tar.gz |
s/ha_store_ptr/my_store_ptr/
s/ha_get_ptr/my_get_ptr/
Diffstat (limited to 'sql/ha_myisammrg.cc')
-rw-r--r-- | sql/ha_myisammrg.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_myisammrg.cc b/sql/ha_myisammrg.cc index 903dd9dec2f..3eadd94bb93 100644 --- a/sql/ha_myisammrg.cc +++ b/sql/ha_myisammrg.cc @@ -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); } |