diff options
author | cmiller@zippy.cornsilk.net <> | 2007-04-24 18:11:55 -0400 |
---|---|---|
committer | cmiller@zippy.cornsilk.net <> | 2007-04-24 18:11:55 -0400 |
commit | 93e804a6168d6e12deb5fdc26a2422f21a05db92 (patch) | |
tree | dc6a44bf8c50bd1fc1d33f5a47a8887065892cb4 /sql/sql_profile.h | |
parent | bbd8b850cd61b1326849c45153a2a0c694cb12b1 (diff) | |
download | mariadb-git-93e804a6168d6e12deb5fdc26a2422f21a05db92.tar.gz |
Wrap code specific to the comunity-server in additional CPP #ifdef .
Add a new autoconf paremeter --{en,dis}able-community-features . The
default is disable for enterprise servers.
Though this is a 5.0 tree, it is only to be merged into the 5.0-community
tree and the global 5.1 tree, never to the 5.0-enterprise tree.
Diffstat (limited to 'sql/sql_profile.h')
-rw-r--r-- | sql/sql_profile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_profile.h b/sql/sql_profile.h index b82b5ce090c..c070f2f72d7 100644 --- a/sql/sql_profile.h +++ b/sql/sql_profile.h @@ -53,7 +53,7 @@ int fill_query_profile_statistics_info(THD *thd, struct st_table_list *tables, I #define PROFILE_ALL (~0) -#ifndef ENABLED_PROFILING +#if !defined(ENABLED_PROFILING) || !defined(COMMUNITY_SERVER) # define thd_proc_info(thd, msg) do { (thd)->proc_info= (msg); } while (0) |