diff options
author | unknown <mskold@mysql.com> | 2004-09-07 16:22:42 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2004-09-07 16:22:42 +0200 |
commit | 499ac04587c46bbb26f7975e5f822822ef03ac71 (patch) | |
tree | c5ce051eafe0af352dab71ccc71f30c7c8354cff /sql/ha_ndbcluster.h | |
parent | 41b9a9c81e6261891bbbbd08714a214dd69fbbd1 (diff) | |
download | mariadb-git-499ac04587c46bbb26f7975e5f822822ef03ac71.tar.gz |
Added use of buffer argument in index_read
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index c49a6078e7a..d71db9268bb 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -93,6 +93,10 @@ class ha_ndbcluster: public handler int read_range_first(const key_range *start_key, const key_range *end_key, bool eq_range, bool sorted); + int read_range_first_to_buf(const key_range *start_key, + const key_range *end_key, + bool eq_range, bool sorted, + byte* buf); int read_range_next(); bool get_error_message(int error, String *buf); |