mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.5 into 10.6
This commit is contained in:
@ -3616,13 +3616,13 @@ public:
|
||||
class Vers_type_timestamp: public Vers_type_handler
|
||||
{
|
||||
public:
|
||||
virtual vers_kind_t kind() const
|
||||
vers_kind_t kind() const override
|
||||
{
|
||||
return VERS_TIMESTAMP;
|
||||
}
|
||||
bool check_sys_fields(const LEX_CSTRING &table_name,
|
||||
const Column_definition *row_start,
|
||||
const Column_definition *row_end) const;
|
||||
const Column_definition *row_end) const override;
|
||||
};
|
||||
extern Vers_type_timestamp vers_type_timestamp;
|
||||
|
||||
@ -3630,13 +3630,13 @@ extern Vers_type_timestamp vers_type_timestamp;
|
||||
class Vers_type_trx: public Vers_type_handler
|
||||
{
|
||||
public:
|
||||
virtual vers_kind_t kind() const
|
||||
vers_kind_t kind() const override
|
||||
{
|
||||
return VERS_TRX_ID;
|
||||
}
|
||||
bool check_sys_fields(const LEX_CSTRING &table_name,
|
||||
const Column_definition *row_start,
|
||||
const Column_definition *row_end) const;
|
||||
const Column_definition *row_end) const override;
|
||||
};
|
||||
extern MYSQL_PLUGIN_IMPORT Vers_type_trx vers_type_trx;
|
||||
|
||||
|
Reference in New Issue
Block a user