1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

cleanup: data type plugins

simplify type naming (less boilerplate code).
don't force a plugin to specify the name twice.
This commit is contained in:
Sergei Golubchik
2019-10-11 14:12:38 +02:00
parent 779978217c
commit 00c3a28820
15 changed files with 181 additions and 450 deletions

View File

@@ -36,7 +36,7 @@
struct st_mariadb_data_type
{
int interface_version;
const class Type_handler *type_handler;
class Type_handler *type_handler;
};

View File

@@ -625,5 +625,5 @@ void thd_wakeup_subsequent_commits(THD* thd, int wakeup_error);
struct st_mariadb_data_type
{
int interface_version;
const class Type_handler *type_handler;
class Type_handler *type_handler;
};