diff options
author | heikki@hundin.mysql.fi <> | 2003-04-24 15:34:43 +0300 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2003-04-24 15:34:43 +0300 |
commit | 9a297329681e733e1db20fb52b67fa45c81dcc22 (patch) | |
tree | e9f2a3c82363f345c8c2e5c14bbea6edf4c8ea81 /sql/ha_innodb.h | |
parent | c6333c5148de47cbde40f5a5ed50424047820032 (diff) | |
download | mariadb-git-9a297329681e733e1db20fb52b67fa45c81dcc22.tar.gz |
ha_innodb.h, ha_innodb.cc:
Make ANALYZE TABLE to update index cardinality and other statistics also for an InnoDB table; note that the estimates are based on 10 random dives, not on an exhaustive read of the table
Diffstat (limited to 'sql/ha_innodb.h')
-rw-r--r-- | sql/ha_innodb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_innodb.h b/sql/ha_innodb.h index d79f12c7ac2..5677d22a2ca 100644 --- a/sql/ha_innodb.h +++ b/sql/ha_innodb.h @@ -152,6 +152,7 @@ class ha_innobase: public handler void position(const byte *record); void info(uint); + int analyze(THD* thd,HA_CHECK_OPT* check_opt); int extra(enum ha_extra_function operation); int reset(void); int external_lock(THD *thd, int lock_type); |