diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-11-12 17:01:56 +0200 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-11-12 17:01:56 +0200 |
commit | fde5386d16df100b5ecc8a47f0616de25fd9116e (patch) | |
tree | 925745877ccfa97e0ef871d8263832f473899442 /storage/innobase/include/dict0dict.ic | |
parent | 92f6c234072196e223d9c5e9514b1ecf59e7da3b (diff) | |
download | mariadb-git-fde5386d16df100b5ecc8a47f0616de25fd9116e.tar.gz |
Add dict_table_t::not_redundant()
Diffstat (limited to 'storage/innobase/include/dict0dict.ic')
-rw-r--r-- | storage/innobase/include/dict0dict.ic | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/storage/innobase/include/dict0dict.ic b/storage/innobase/include/dict0dict.ic index 6dcc40db70a..f631626822d 100644 --- a/storage/innobase/include/dict0dict.ic +++ b/storage/innobase/include/dict0dict.ic @@ -532,19 +532,6 @@ dict_table_get_sys_col_no( return unsigned(table->n_cols) + (sys - DATA_N_SYS_COLS); } -/********************************************************************//** -Check whether the table uses the compact page format. -@return TRUE if table uses the compact page format */ -UNIV_INLINE -bool -dict_table_is_comp( -/*===============*/ - const dict_table_t* table) /*!< in: table */ -{ - ut_ad(table); - return (table->flags & DICT_TF_COMPACT) != 0; -} - /************************************************************************ Check if the table has an FTS index. */ UNIV_INLINE |