diff options
author | unknown <mskold@mysql.com> | 2004-07-22 18:35:51 +0200 |
---|---|---|
committer | unknown <mskold@mysql.com> | 2004-07-22 18:35:51 +0200 |
commit | cf4cfab2163048d789ad75b85b29f5b10cbafabe (patch) | |
tree | ab2f1206d60856b866c875cdde91df9084c5c1e8 /sql/ha_ndbcluster.h | |
parent | d8a914d431afa760780aa93386c806107d814314 (diff) | |
download | mariadb-git-cf4cfab2163048d789ad75b85b29f5b10cbafabe.tar.gz |
WL#1791 Handler: support update of primary key
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index fc0d607abaa..a1cb1698067 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -156,8 +156,8 @@ class ha_ndbcluster: public handler NDB_INDEX_TYPE get_index_type(uint idx_no) const; NDB_INDEX_TYPE get_index_type_from_table(uint index_no) const; - int pk_read(const byte *key, uint key_len, - byte *buf); + int pk_read(const byte *key, uint key_len, byte *buf); + int complemented_pk_read(const byte *old_data, byte *new_data); int unique_index_read(const byte *key, uint key_len, byte *buf); int ordered_index_scan(const key_range *start_key, |