diff options
author | Mattias Jonsson <mattias.jonsson@sun.com> | 2010-05-24 14:51:59 +0200 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@sun.com> | 2010-05-24 14:51:59 +0200 |
commit | d7e7afd4031bcc521594cb4c4d8a656d2d550a94 (patch) | |
tree | 498aada5d15432514b41100444b982ff13cc1568 /sql/handler.h | |
parent | ac9bae9e046b183df7bd3bb94186bb803465d336 (diff) | |
parent | 864d6bc90bc7e4a983fbc69a963b3365dbc3966f (diff) | |
download | mariadb-git-d7e7afd4031bcc521594cb4c4d8a656d2d550a94.tar.gz |
Merge of bug#51851.
Also moved HA_DATA_PARTITION from ha_partition.cc to table.h.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index 9f21cb0f25d..1b5d5f8cb1f 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -961,7 +961,7 @@ typedef struct { ulong check_time; ulong update_time; ulonglong check_sum; -} PARTITION_INFO; +} PARTITION_STATS; #define UNDEF_NODEGROUP 65535 class Item; @@ -1560,7 +1560,7 @@ public: { return (ha_rows) 10; } virtual void position(const uchar *record)=0; virtual int info(uint)=0; // see my_base.h for full description - virtual void get_dynamic_partition_info(PARTITION_INFO *stat_info, + virtual void get_dynamic_partition_info(PARTITION_STATS *stat_info, uint part_id); virtual int extra(enum ha_extra_function operation) { return 0; } |