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
a5ec9fc1
Commit
a5ec9fc1
authored
Jul 21, 2017
by
Aleksey Midenkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Style: mysqld.h comments
parent
c2f62146
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
sql/mysqld.h
sql/mysqld.h
+9
-2
No files found.
sql/mysqld.h
View file @
a5ec9fc1
...
...
@@ -176,6 +176,7 @@ extern char *opt_backup_history_logname, *opt_backup_progress_logname,
extern
const
char
*
log_output_str
;
extern
const
char
*
log_backup_output_str
;
/* System Versioning begin */
enum
vers_range_type_t
{
FOR_SYSTEM_TIME_UNSPECIFIED
=
0
,
...
...
@@ -186,8 +187,11 @@ enum vers_range_type_t
FOR_SYSTEM_TIME_BEFORE
};
/* Used only for @@versioning_current_time sysvar. This struct must be POD
* because of str_value, which is used as interface to user.
* So no virtual-anything! */
struct
st_vers_current_time
{
// This struct must be POD, so no virtual-anything!
{
char
*
str_value
;
// must be first
vers_range_type_t
type
;
MYSQL_TIME
ltime
;
...
...
@@ -197,12 +201,15 @@ struct st_vers_current_time
{}
};
enum
vers_hide_enum
{
enum
vers_hide_enum
{
VERS_HIDE_AUTO
=
0
,
VERS_HIDE_IMPLICIT
,
VERS_HIDE_FULL
,
VERS_HIDE_NEVER
};
/* System Versioning end */
extern
char
*
mysql_home_ptr
,
*
pidfile_name_ptr
;
extern
MYSQL_PLUGIN_IMPORT
char
glob_hostname
[
FN_REFLEN
];
extern
char
mysql_home
[
FN_REFLEN
];
...
...
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