From 26162c71c5c2532ab08020146d4e6c32fb06a8e8 Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Sun, 28 Jun 2015 09:03:13 +0200 Subject: [PATCH] rename {sys_vars,sql_plugin_services}.h -> *.ic --- libservices/HOWTO | 2 +- sql/CMakeLists.txt | 2 +- sql/sql_plugin.cc | 2 +- sql/{sql_plugin_services.h => sql_plugin_services.ic} | 0 sql/sys_vars.cc | 2 +- sql/{sys_vars.h => sys_vars.ic} | 0 6 files changed, 4 insertions(+), 4 deletions(-) rename sql/{sql_plugin_services.h => sql_plugin_services.ic} (100%) rename sql/{sys_vars.h => sys_vars.ic} (100%) diff --git a/libservices/HOWTO b/libservices/HOWTO index 9f1fc2dba2b9a..69d96f8aa25fe 100644 --- a/libservices/HOWTO +++ b/libservices/HOWTO @@ -84,7 +84,7 @@ it should also declare all the accompanying data structures, as necessary 7. add the new file to libservices/CMakeLists.txt (MYSQLSERVICES_SOURCES) 8. Add all new files to repository (bzr add) 9. and finally, register your service for dynamic linking in - sql/sql_plugin_services.h as follows: + sql/sql_plugin_services.ic as follows: 9.1 fill in the service structure: ================================================================== static struct foo_service_st foo_handler = { diff --git a/sql/CMakeLists.txt b/sql/CMakeLists.txt index 2eb6583799235..169f260a91b82 100644 --- a/sql/CMakeLists.txt +++ b/sql/CMakeLists.txt @@ -82,7 +82,7 @@ SET (SQL_SOURCE filesort_utils.cc filesort.cc gstream.cc sha2.cc signal_handler.cc - handler.cc hash_filo.h sql_plugin_services.h + handler.cc hash_filo.h hostname.cc init.cc item.cc item_buff.cc item_cmpfunc.cc item_create.cc item_func.cc item_geofunc.cc item_row.cc item_strfunc.cc item_subselect.cc item_sum.cc item_timefunc.cc diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index e9547d805e266..595c371f51556 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -215,7 +215,7 @@ static struct /* support for Services */ -#include "sql_plugin_services.h" +#include "sql_plugin_services.ic" /* A mutex LOCK_plugin must be acquired before accessing the diff --git a/sql/sql_plugin_services.h b/sql/sql_plugin_services.ic similarity index 100% rename from sql/sql_plugin_services.h rename to sql/sql_plugin_services.ic diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc index 3a197de6bd245..889a88db98b64 100644 --- a/sql/sys_vars.cc +++ b/sql/sys_vars.cc @@ -34,7 +34,7 @@ #include "sql_plugin.h" // Includes my_global.h #include "sql_priv.h" #include "sql_class.h" // set_var.h: THD -#include "sys_vars.h" +#include "sys_vars.ic" #include "events.h" #include diff --git a/sql/sys_vars.h b/sql/sys_vars.ic similarity index 100% rename from sql/sys_vars.h rename to sql/sys_vars.ic