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

InnoDB: Make SHOW TABLE STATUS report Row_format=Compact and

Row_format=Redundant
This commit is contained in:
marko@hundin.mysql.fi
2005-02-08 13:35:10 +02:00
parent 22c1836728
commit 7dbb93d9fc
4 changed files with 56 additions and 4 deletions

View File

@@ -385,6 +385,12 @@ public:
virtual ha_rows estimate_rows_upper_bound()
{ return records+EXTRA_RECORDS; }
/*
Get the row type from the storage engine. If this method returns
ROW_TYPE_NOT_USED, the information in HA_CREATE_INFO should be used.
*/
virtual enum row_type get_row_type() const { return ROW_TYPE_NOT_USED; }
virtual const char *index_type(uint key_number) { DBUG_ASSERT(0); return "";}
int ha_index_init(uint idx)