1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

A temporary solution to make CREATE TABLE attributes

to work when a table is partitioned
This commit is contained in:
Sergei Golubchik
2010-05-11 16:49:23 +02:00
parent 8792d8a3ac
commit a3e8ae1280
10 changed files with 86 additions and 9 deletions

View File

@@ -2230,6 +2230,10 @@ private:
virtual int rename_partitions(const char *path)
{ return HA_ERR_WRONG_COMMAND; }
friend class ha_partition;
public:
/* XXX to be removed, see ha_partition::partition_ht() */
virtual handlerton *partition_ht() const
{ return ht; }
};