1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

SQL: followup misc rename on versioning

vers_sys_type_t -> vers_kind_t
This commit is contained in:
Aleksey Midenkov
2018-09-18 14:20:09 +03:00
parent 58fdf5b2fa
commit 19b5b17773
4 changed files with 12 additions and 12 deletions

View File

@ -3238,7 +3238,7 @@ public:
};
enum vers_sys_type_t
enum vers_kind_t
{
VERS_UNDEFINED= 0,
VERS_TIMESTAMP,
@ -3252,7 +3252,7 @@ protected:
Vers_type_handler() {}
public:
virtual ~Vers_type_handler() {}
virtual vers_sys_type_t kind() const
virtual vers_kind_t kind() const
{
DBUG_ASSERT(0);
return VERS_UNDEFINED;
@ -3266,7 +3266,7 @@ public:
class Vers_type_timestamp: public Vers_type_handler
{
public:
virtual vers_sys_type_t kind() const
virtual vers_kind_t kind() const
{
return VERS_TIMESTAMP;
}
@ -3280,7 +3280,7 @@ extern MYSQL_PLUGIN_IMPORT Vers_type_timestamp vers_type_timestamp;
class Vers_type_trx: public Vers_type_handler
{
public:
virtual vers_sys_type_t kind() const
virtual vers_kind_t kind() const
{
return VERS_TRX_ID;
}