summaryrefslogtreecommitdiff
path: root/sql/examples
diff options
context:
space:
mode:
authorunknown <petr@mysql.com>2005-02-20 22:52:28 +0300
committerunknown <petr@mysql.com>2005-02-20 22:52:28 +0300
commitb3b5f8fb651e40506ab51acb12796b0f7d8d98ef (patch)
tree1050529733f5d9ea320eca18e3d09cd3b19bf6f7 /sql/examples
parenta0a20345b9869731cac43438ed5c23709aa6fc14 (diff)
downloadmariadb-git-b3b5f8fb651e40506ab51acb12796b0f7d8d98ef.tar.gz
Fix confusing comments.
sql/examples/ha_example.cc: fix comments, referring to renamed function sql/ha_federated.cc: fix comments, referring to renamed function
Diffstat (limited to 'sql/examples')
-rw-r--r--sql/examples/ha_example.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/examples/ha_example.cc b/sql/examples/ha_example.cc
index cb0780ea74d..d043a66e71a 100644
--- a/sql/examples/ha_example.cc
+++ b/sql/examples/ha_example.cc
@@ -414,7 +414,7 @@ int ha_example::rnd_next(byte *buf)
position() is called after each call to rnd_next() if the data needs
to be ordered. You can do something like the following to store
the position:
- ha_store_ptr(ref, ref_length, current_position);
+ my_store_ptr(ref, ref_length, current_position);
The server uses ref to store data. ref_length in the above case is
the size needed to store current_position. ref is just a byte array