diff options
author | serg@serg.mylan <> | 2004-11-07 22:39:27 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-11-07 22:39:27 +0100 |
commit | f58484fac2796502bbb2b874d436cb73f3dd89b7 (patch) | |
tree | 21cfbec56aed1543b9eb0098b188565895034f18 /sql/ha_myisammrg.cc | |
parent | bb9cc04026719d95ecd5d44d45634e7ecc110dc8 (diff) | |
download | mariadb-git-f58484fac2796502bbb2b874d436cb73f3dd89b7.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); } |