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
0fe3d6d5
Commit
0fe3d6d5
authored
Feb 26, 2020
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
all status variables above `questions` MUST be ulong
see e.g. `add_to_status()`
parent
7b082fb0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
sql/mysqld.cc
sql/mysqld.cc
+3
-3
sql/sql_class.h
sql/sql_class.h
+3
-3
No files found.
sql/mysqld.cc
View file @
0fe3d6d5
...
...
@@ -8415,9 +8415,9 @@ SHOW_VAR status_vars[]= {
{
"Key"
,
(
char
*
)
&
show_default_keycache
,
SHOW_FUNC
},
{
"Last_query_cost"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
last_query_cost
),
SHOW_DOUBLE_STATUS
},
{
"Max_statement_time_exceeded"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
max_statement_time_exceeded
),
SHOW_LONG_STATUS
},
{
"Master_gtid_wait_count"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
master_gtid_wait_count
),
SHOW_LONG
LONG
_STATUS
},
{
"Master_gtid_wait_timeouts"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
master_gtid_wait_timeouts
),
SHOW_LONG
LONG
_STATUS
},
{
"Master_gtid_wait_time"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
master_gtid_wait_time
),
SHOW_LONG
LONG
_STATUS
},
{
"Master_gtid_wait_count"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
master_gtid_wait_count
),
SHOW_LONG_STATUS
},
{
"Master_gtid_wait_timeouts"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
master_gtid_wait_timeouts
),
SHOW_LONG_STATUS
},
{
"Master_gtid_wait_time"
,
(
char
*
)
offsetof
(
STATUS_VAR
,
master_gtid_wait_time
),
SHOW_LONG_STATUS
},
{
"Max_used_connections"
,
(
char
*
)
&
max_used_connections
,
SHOW_LONG
},
{
"Memory_used"
,
(
char
*
)
&
show_memory_used
,
SHOW_SIMPLE_FUNC
},
{
"Not_flushed_delayed_rows"
,
(
char
*
)
&
delayed_rows_in_use
,
SHOW_LONG_NOFLUSH
},
...
...
sql/sql_class.h
View file @
0fe3d6d5
...
...
@@ -781,9 +781,9 @@ typedef struct system_status_var
ulong
feature_xml
;
/* +1 when XPATH is used */
/* From MASTER_GTID_WAIT usage */
ulong
long
master_gtid_wait_timeouts
;
/* Number of timeouts */
ulong
long
master_gtid_wait_time
;
/* Time in microseconds */
ulong
long
master_gtid_wait_count
;
ulong
master_gtid_wait_timeouts
;
/* Number of timeouts */
ulong
master_gtid_wait_time
;
/* Time in microseconds */
ulong
master_gtid_wait_count
;
ulong
empty_queries
;
ulong
access_denied_errors
;
...
...
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