diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2018-05-12 09:38:46 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2018-05-12 22:12:12 +0300 |
commit | ba43914ec4fca0747976cafeb728cc77e4ae2852 (patch) | |
tree | c6ce19d932da74ad7da3f9481ed8cae1641f96ad /storage/innobase/include/dict0dict.h | |
parent | edaf57e96633ea5bd973be9c4a41f52bece2fc1e (diff) | |
download | mariadb-git-ba43914ec4fca0747976cafeb728cc77e4ae2852.tar.gz |
Replace dict_table_is_temporary(table) with table->is_temporary()
Diffstat (limited to 'storage/innobase/include/dict0dict.h')
-rw-r--r-- | storage/innobase/include/dict0dict.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/storage/innobase/include/dict0dict.h b/storage/innobase/include/dict0dict.h index 5d77614aeb3..5903194fa28 100644 --- a/storage/innobase/include/dict0dict.h +++ b/storage/innobase/include/dict0dict.h @@ -1842,8 +1842,6 @@ dict_table_is_discarded( const dict_table_t* table) /*!< in: table to check */ MY_ATTRIBUTE((warn_unused_result)); -#define dict_table_is_temporary(table) (table)->is_temporary() - /*********************************************************************//** This function should be called whenever a page is successfully compressed. Updates the compression padding information. */ |