Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
227f63db
Commit
227f63db
authored
Mar 06, 2017
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup: sort various lists of services
parent
0877eff4
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1138 additions
and
1138 deletions
+1138
-1138
include/mysql/plugin_audit.h.pp
include/mysql/plugin_audit.h.pp
+217
-217
include/mysql/plugin_auth.h.pp
include/mysql/plugin_auth.h.pp
+217
-217
include/mysql/plugin_encryption.h.pp
include/mysql/plugin_encryption.h.pp
+217
-217
include/mysql/plugin_ftparser.h.pp
include/mysql/plugin_ftparser.h.pp
+217
-217
include/mysql/plugin_password_validation.h.pp
include/mysql/plugin_password_validation.h.pp
+217
-217
include/mysql/services.h
include/mysql/services.h
+12
-12
include/service_versions.h
include/service_versions.h
+12
-13
libservices/CMakeLists.txt
libservices/CMakeLists.txt
+13
-12
sql/sql_plugin.cc
sql/sql_plugin.cc
+2
-2
sql/sql_plugin_services.ic
sql/sql_plugin_services.ic
+14
-14
No files found.
include/mysql/plugin_audit.h.pp
View file @
227f63db
This diff is collapsed.
Click to expand it.
include/mysql/plugin_auth.h.pp
View file @
227f63db
This diff is collapsed.
Click to expand it.
include/mysql/plugin_encryption.h.pp
View file @
227f63db
This diff is collapsed.
Click to expand it.
include/mysql/plugin_ftparser.h.pp
View file @
227f63db
This diff is collapsed.
Click to expand it.
include/mysql/plugin_password_validation.h.pp
View file @
227f63db
This diff is collapsed.
Click to expand it.
include/mysql/services.h
View file @
227f63db
...
...
@@ -19,24 +19,24 @@
extern
"C"
{
#endif
#include <mysql/service_my_snprintf.h>
#include <mysql/service_thd_alloc.h>
#include <mysql/service_thd_wait.h>
#include <mysql/service_progress_report.h>
#include <mysql/service_base64.h>
#include <mysql/service_debug_sync.h>
#include <mysql/service_encryption.h>
#include <mysql/service_encryption_scheme.h>
#include <mysql/service_kill_statement.h>
#include <mysql/service_thd_timezone.h>
#include <mysql/service_sha2.h>
#include <mysql/service_sha1.h>
#include <mysql/service_md5.h>
#include <mysql/service_base64.h>
#include <mysql/service_logger.h>
#include <mysql/service_md5.h>
#include <mysql/service_my_snprintf.h>
#include <mysql/service_progress_report.h>
#include <mysql/service_sha1.h>
#include <mysql/service_sha2.h>
#include <mysql/service_thd_alloc.h>
#include <mysql/service_thd_autoinc.h>
#include <mysql/service_thd_rnd.h>
#include <mysql/service_thd_error_context.h>
#include <mysql/service_thd_rnd.h>
#include <mysql/service_thd_specifics.h>
#include <mysql/service_
encryption
.h>
#include <mysql/service_
encryption_scheme
.h>
#include <mysql/service_
thd_timezone
.h>
#include <mysql/service_
thd_wait
.h>
/*#include <mysql/service_wsrep.h>*/
#ifdef __cplusplus
...
...
include/service_versions.h
View file @
227f63db
...
...
@@ -23,21 +23,20 @@
#define VERSION_debug_sync 0x1000
#define VERSION_kill_statement 0x1000
#define VERSION_base64 0x0100
#define VERSION_encryption 0x0300
#define VERSION_encryption_scheme 0x0100
#define VERSION_logger 0x0100
#define VERSION_my_md5 0x0100
#define VERSION_my_sha1 0x0101
#define VERSION_my_sha2 0x0100
#define VERSION_my_snprintf 0x0100
#define VERSION_thd_alloc 0x0100
#define VERSION_thd_wait 0x0100
#define VERSION_progress_report 0x0100
#define VERSION_thd_timezone 0x0100
#define VERSION_my_sha2 0x0100
#define VERSION_my_sha1 0x0101
#define VERSION_my_md5 0x0100
#define VERSION_wsrep 0x0201
#define VERSION_logger 0x0100
#define VERSION_base64 0x0100
#define VERSION_thd_rnd 0x0100
#define VERSION_thd_alloc 0x0100
#define VERSION_thd_autoinc 0x0100
#define VERSION_thd_error_context 0x0100
#define VERSION_thd_rnd 0x0100
#define VERSION_thd_specifics 0x0100
#define VERSION_
encryption 0x03
00
#define VERSION_
encryption_scheme
0x0100
#define VERSION_
thd_timezone 0x01
00
#define VERSION_
thd_wait
0x0100
#define VERSION_wsrep 0x0201
libservices/CMakeLists.txt
View file @
227f63db
...
...
@@ -16,25 +16,26 @@
INCLUDE_DIRECTORIES
(
${
CMAKE_SOURCE_DIR
}
/include
)
SET
(
MYSQLSERVICES_SOURCES
base64_service.c
debug_sync_service.c
encryption_scheme_service.c
encryption_service.c
kill_statement_service.c
logger_service.c
my_md5_service.c
my_sha1_service.c
my_sha2_service.c
my_snprintf_service.c
progress_report_service.c
thd_alloc_service.c
thd_wait_service.c
thd_timezone_service.c
thd_autoinc_service.c
thd_error_context_service.c
thd_rnd_service.c
thd_specifics_service.c
progress_report_service.c
debug_sync_service.c
my_sha2_service.c
my_sha1_service.c
my_md5_service.c
base64_service.c
thd_timezone_service.c
thd_wait_service.c
wsrep_service.c
encryption_service.c
encryption_scheme_service.c
kill_statement_service.c
logger_service.c
)
)
ADD_CONVENIENCE_LIBRARY
(
mysqlservices
${
MYSQLSERVICES_SOURCES
}
)
INSTALL
(
TARGETS mysqlservices DESTINATION
${
INSTALL_LIBDIR
}
COMPONENT Development
)
sql/sql_plugin.cc
View file @
227f63db
...
...
@@ -1550,8 +1550,8 @@ int plugin_init(int *argc, char **argv, int flags)
}
/* prepare debug_sync service */
DBUG_ASSERT
(
strcmp
(
list_of_services
[
4
].
name
,
"debug_sync_service"
)
==
0
);
list_of_services
[
4
].
service
=
*
(
void
**
)
&
debug_sync_C_callback_ptr
;
DBUG_ASSERT
(
strcmp
(
list_of_services
[
1
].
name
,
"debug_sync_service"
)
==
0
);
list_of_services
[
1
].
service
=
*
(
void
**
)
&
debug_sync_C_callback_ptr
;
/* prepare encryption_keys service */
finalize_encryption_plugin
(
0
);
...
...
sql/sql_plugin_services.ic
View file @
227f63db
...
...
@@ -198,24 +198,24 @@ static struct encryption_scheme_service_st encryption_scheme_handler=
static struct st_service_ref list_of_services[]=
{
{ "base64_service", VERSION_base64, &base64_handler },
{ "debug_sync_service", VERSION_debug_sync, 0 }, // updated in plugin_init()
{ "encryption_scheme_service", VERSION_encryption_scheme, &encryption_scheme_handler },
{ "encryption_service", VERSION_encryption, &encryption_handler },
{ "logger_service", VERSION_logger, &logger_service_handler },
{ "my_md5_service", VERSION_my_md5, &my_md5_handler},
{ "my_sha1_service", VERSION_my_sha1, &my_sha1_handler},
{ "my_sha2_service", VERSION_my_sha2, &my_sha2_handler},
{ "my_snprintf_service", VERSION_my_snprintf, &my_snprintf_handler },
{ "thd_alloc_service", VERSION_thd_alloc, &thd_alloc_handler },
{ "thd_wait_service", VERSION_thd_wait, &thd_wait_handler },
{ "progress_report_service", VERSION_progress_report, &progress_report_handler },
{ "debug_sync_service", VERSION_debug_sync, 0 }, // updated in plugin_init()
{ "thd_alloc_service", VERSION_thd_alloc, &thd_alloc_handler },
{ "thd_autoinc_service", VERSION_thd_autoinc, &thd_autoinc_handler },
{ "thd_error_context_service", VERSION_thd_error_context, &thd_error_conext_handler },
{ "thd_kill_statement_service", VERSION_kill_statement, &thd_kill_statement_handler },
{ "thd_timezone_service", VERSION_thd_timezone, &thd_timezone_handler },
{ "my_sha2_service", VERSION_my_sha2, &my_sha2_handler},
{ "my_sha1_service", VERSION_my_sha1, &my_sha1_handler},
{ "my_md5_service", VERSION_my_md5, &my_md5_handler},
{ "logger_service", VERSION_logger, &logger_service_handler },
{ "base64_service", VERSION_base64, &base64_handler },
{ "thd_rnd_service", VERSION_thd_rnd, &thd_rnd_handler },
{ "thd_autoinc_service", VERSION_thd_autoinc, &thd_autoinc_handler },
{ "wsrep_service", VERSION_wsrep, &wsrep_handler },
{ "encryption_service", VERSION_encryption, &encryption_handler },
{ "encryption_scheme_service", VERSION_encryption_scheme, &encryption_scheme_handler },
{ "thd_specifics_service", VERSION_thd_specifics, &thd_specifics_handler },
{ "thd_error_context_service", VERSION_thd_error_context, &thd_error_conext_handler },
{ "thd_timezone_service", VERSION_thd_timezone, &thd_timezone_handler },
{ "thd_wait_service", VERSION_thd_wait, &thd_wait_handler },
{ "wsrep_service", VERSION_wsrep, &wsrep_handler },
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment