diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2010-10-26 15:35:13 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2010-10-26 15:35:13 +0400 |
commit | d8efc3b155dc7791b00d5e87ccb8b34d1a12156b (patch) | |
tree | 061337f0951a71a7bd83d3bc98ed3bfe60ee85ec /sql/handler.h | |
parent | ac8a79b944546ffcbaf366f789873b28e05896f8 (diff) | |
download | mariadb-git-d8efc3b155dc7791b00d5e87ccb8b34d1a12156b.tar.gz |
DS-MRR improvements: address review feedback for R3 version of the patch
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 40f2d321241..6ff252632ee 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -2177,7 +2177,8 @@ public: TRUE if the engine supports virtual columns */ virtual bool check_if_supported_virtual_columns(void) { return FALSE;} - + + TABLE* get_table() { return table; } protected: /* deprecated, don't use in new engines */ inline void ha_statistic_increment(ulong SSV::*offset) const { } @@ -2370,7 +2371,6 @@ private: virtual int rename_partitions(const char *path) { return HA_ERR_WRONG_COMMAND; } friend class ha_partition; - friend class DsMrr_impl; public: /* XXX to be removed, see ha_partition::partition_ht() */ virtual handlerton *partition_ht() const |