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
d645025e
Commit
d645025e
authored
Nov 18, 2022
by
Monty
Committed by
Sergei Petrunia
Feb 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change default of histogram_type to JSON_HB
parent
98879f8d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/main/mysqld--help.result
mysql-test/main/mysqld--help.result
+1
-1
mysql-test/suite/sys_vars/r/histogram_type_basic.result
mysql-test/suite/sys_vars/r/histogram_type_basic.result
+1
-1
sql/sys_vars.cc
sql/sys_vars.cc
+1
-1
No files found.
mysql-test/main/mysqld--help.result
View file @
d645025e
...
...
@@ -1632,7 +1632,7 @@ gtid-pos-auto-engines
gtid-strict-mode FALSE
help TRUE
histogram-size 254
histogram-type
DOUBLE_PREC
_HB
histogram-type
JSON
_HB
host-cache-size 279
idle-readonly-transaction-timeout 0
idle-transaction-timeout 0
...
...
mysql-test/suite/sys_vars/r/histogram_type_basic.result
View file @
d645025e
...
...
@@ -10,7 +10,7 @@ SET @@global.histogram_type = 1;
SET @@global.histogram_type = DEFAULT;
SELECT @@global.histogram_type;
@@global.histogram_type
DOUBLE_PREC
_HB
JSON
_HB
SET @@global.histogram_type = 0;
SELECT @@global.histogram_type;
@@global.histogram_type
...
...
sql/sys_vars.cc
View file @
d645025e
...
...
@@ -6670,7 +6670,7 @@ static Sys_var_enum Sys_histogram_type(
"DOUBLE_PREC_HB - double precision height-balanced, "
"JSON_HB - height-balanced, stored as JSON."
,
SESSION_VAR
(
histogram_type
),
CMD_LINE
(
REQUIRED_ARG
),
histogram_types
,
DEFAULT
(
1
));
histogram_types
,
DEFAULT
(
2
));
static
Sys_var_mybool
Sys_no_thread_alarm
(
"debug_no_thread_alarm"
,
...
...
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