diff options
author | serg@janus.mylan <> | 2007-03-17 00:13:25 +0100 |
---|---|---|
committer | serg@janus.mylan <> | 2007-03-17 00:13:25 +0100 |
commit | 68fd66e853cd94fcb76aba6b95a592bb39e2b8f7 (patch) | |
tree | 37481f305868166d3013f273d8fccadb4776d51c /storage/example | |
parent | 55a548cf4d923fc6a3ab38a4b447f639257e358f (diff) | |
download | mariadb-git-68fd66e853cd94fcb76aba6b95a592bb39e2b8f7.tar.gz |
wl#3700 - post-review fixes:
s/ulonglong/key_part_map/, comments
Diffstat (limited to 'storage/example')
-rw-r--r-- | storage/example/ha_example.cc | 2 | ||||
-rw-r--r-- | storage/example/ha_example.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/storage/example/ha_example.cc b/storage/example/ha_example.cc index 01d508e3290..999e36a4242 100644 --- a/storage/example/ha_example.cc +++ b/storage/example/ha_example.cc @@ -415,7 +415,7 @@ int ha_example::delete_row(const byte * buf) */ int ha_example::index_read(byte * buf, const byte * key, - ulonglong keypart_map __attribute__((unused)), + key_part_map keypart_map __attribute__((unused)), enum ha_rkey_function find_flag __attribute__((unused))) { diff --git a/storage/example/ha_example.h b/storage/example/ha_example.h index ee60b412974..9777a478209 100644 --- a/storage/example/ha_example.h +++ b/storage/example/ha_example.h @@ -191,7 +191,7 @@ public: skip it and and MySQL will treat it as not implemented. */ int index_read(byte * buf, const byte * key, - ulonglong keypart_map, enum ha_rkey_function find_flag); + key_part_map keypart_map, enum ha_rkey_function find_flag); /** @brief We implement this in ha_example.cc. It's not an obligatory method; |