diff options
author | Sergei Golubchik <serg@mariadb.org> | 2019-05-02 13:09:27 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-05-07 18:40:36 +0200 |
commit | ffb83ba65026e2af547b44601c4894437e4f031c (patch) | |
tree | 02c7c81c6ffb615514048b8613e067668d0cac27 /sql/ha_partition.h | |
parent | 651a43e0a0361098c35164a128ca588a2989d8e1 (diff) | |
download | mariadb-git-ffb83ba65026e2af547b44601c4894437e4f031c.tar.gz |
cleanup: move checksum code to handler class
make live checksum to be returned in handler::info(),
and slow table-scan checksum to be calculated in handler::checksum().
part of
MDEV-16249 CHECKSUM TABLE for a spider table is not parallel and saves all data in memory in the spider head by default
Diffstat (limited to 'sql/ha_partition.h')
-rw-r--r-- | sql/ha_partition.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/ha_partition.h b/sql/ha_partition.h index e1f1503f8ec..41622590f0d 100644 --- a/sql/ha_partition.h +++ b/sql/ha_partition.h @@ -1454,7 +1454,6 @@ public: virtual int dump(THD* thd, int fd = -1); virtual int net_read_dump(NET* net); */ - virtual uint checksum() const; /* Enabled keycache for performance reasons, WL#4571 */ virtual int assign_to_keycache(THD* thd, HA_CHECK_OPT *check_opt); virtual int preload_keys(THD* thd, HA_CHECK_OPT* check_opt); |