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 | e5a79d41d9c6e791f18a7602b6381d9a1b727bd7 (patch) | |
tree | 6dd7a05b49558266be512aaf38eb983255dcaa67 /sql/ha_partition.h | |
parent | 21697182ee17e27d078eb3d2b7f0c68d552530aa (diff) | |
download | mariadb-git-e5a79d41d9c6e791f18a7602b6381d9a1b727bd7.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); |