diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-08-10 19:24:58 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-08-10 19:24:58 +0200 |
commit | 64752acf72175ce65250f5c15a93b1850e5640d1 (patch) | |
tree | 654a27562bc55d439b4791e2a121e0a30ce69c14 /storage/xtradb/include/dict0stats.h | |
parent | b42664e85e2cd512245de4fde94237a502fdbedb (diff) | |
download | mariadb-git-64752acf72175ce65250f5c15a93b1850e5640d1.tar.gz |
5.6.31-77.0
Diffstat (limited to 'storage/xtradb/include/dict0stats.h')
-rw-r--r-- | storage/xtradb/include/dict0stats.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/storage/xtradb/include/dict0stats.h b/storage/xtradb/include/dict0stats.h index 186f90e3694..35ee1a00d8a 100644 --- a/storage/xtradb/include/dict0stats.h +++ b/storage/xtradb/include/dict0stats.h @@ -1,6 +1,6 @@ /***************************************************************************** -Copyright (c) 2009, 2012, Oracle and/or its affiliates. All Rights Reserved. +Copyright (c) 2009, 2016, Oracle and/or its affiliates. All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -77,7 +77,7 @@ dict_stats_set_persistent( dict_table_t* table, /*!< in/out: table */ ibool ps_on, /*!< in: persistent stats explicitly enabled */ ibool ps_off) /*!< in: persistent stats explicitly disabled */ - __attribute__((nonnull)); + MY_ATTRIBUTE((nonnull)); /*********************************************************************//** Check whether persistent statistics is enabled for a given table. @@ -87,7 +87,7 @@ ibool dict_stats_is_persistent_enabled( /*=============================*/ const dict_table_t* table) /*!< in: table */ - __attribute__((nonnull, warn_unused_result)); + MY_ATTRIBUTE((nonnull, warn_unused_result)); /*********************************************************************//** Set the auto recalc flag for a given table (only honored for a persistent @@ -127,7 +127,7 @@ void dict_stats_deinit( /*==============*/ dict_table_t* table) /*!< in/out: table */ - __attribute__((nonnull)); + MY_ATTRIBUTE((nonnull)); /*********************************************************************//** Calculates new estimates for table and index statistics. The statistics @@ -179,7 +179,7 @@ void dict_stats_update_for_index( /*========================*/ dict_index_t* index) /*!< in/out: index */ - __attribute__((nonnull)); + MY_ATTRIBUTE((nonnull)); /*********************************************************************//** Renames a table in InnoDB persistent stats storage. |