diff options
author | unknown <stewart@willster.(none)> | 2006-10-18 22:31:48 +1000 |
---|---|---|
committer | unknown <stewart@willster.(none)> | 2006-10-18 22:31:48 +1000 |
commit | 81b19542e071536ea470ea3c4661873dbdf19e82 (patch) | |
tree | 6dd7a05b49558266be512aaf38eb983255dcaa67 /sql/ha_partition.h | |
parent | 245848081c242046208eb864a8920c40b4f69895 (diff) | |
download | mariadb-git-81b19542e071536ea470ea3c4661873dbdf19e82.tar.gz |
BUG#19914 SELECT COUNT(*) sometimes returns MAX_INT on cluster tables
update partition engine for handler::info returning int
sql/ha_partition.cc:
update for handler::info returning int.
sql/ha_partition.h:
update for handler::info returning int.
Diffstat (limited to 'sql/ha_partition.h')
-rw-r--r-- | sql/ha_partition.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_partition.h b/sql/ha_partition.h index b66db205549..614471a56f0 100644 --- a/sql/ha_partition.h +++ b/sql/ha_partition.h @@ -449,7 +449,7 @@ public: purposes. ------------------------------------------------------------------------- */ - virtual void info(uint); + virtual int info(uint); void get_dynamic_partition_info(PARTITION_INFO *stat_info, uint part_id); virtual int extra(enum ha_extra_function operation); |