Skip to content

Commit

Permalink
update: [MariaDB] && [MySQL] updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-robot committed Jun 25, 2022
1 parent f85d339 commit dbb0cab
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 18 deletions.
5 changes: 3 additions & 2 deletions data/mariadb-server-system-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -655,13 +655,14 @@
},
{
"cli": "--explicit-defaults-for-timestamp=[={0|1}]",
"default": "OFF",
"default": "ON (>= MariaDB 10.10), OFF (<= MariaDB 10.9)",
"dynamic": false,
"id": "explicit_defaults_for_timestamp",
"name": "explicit_defaults_for_timestamp",
"scope": [
"global"
]
],
"type": "boolean"
},
{
"default": "NULL",
Expand Down
13 changes: 12 additions & 1 deletion data/mariadb-xtradbinnodb-server-system-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -1886,7 +1886,7 @@
},
{
"cli": "--innodb-log-buffer-size=#",
"default": "16777216 (16MB) >= MariaDB 10.1.9, 8388608 (8MB) <= MariaDB 10.1.8",
"default": "16777216 (16MB)",
"dynamic": false,
"id": "innodb_log_buffer_size",
"name": "innodb_log_buffer_size",
Expand Down Expand Up @@ -1947,6 +1947,17 @@
],
"type": "boolean"
},
{
"cli": "--innodb-log-file-buffering={0|1}",
"default": "OFF",
"dynamic": true,
"id": "innodb_log_file_buffering",
"name": "innodb_log_file_buffering",
"scope": [
"global"
],
"type": "boolean"
},
{
"cli": "--innodb-log-file-size=#",
"default": "100663296 (96MB) (>= MariaDB 10.5), 50331648 (48MB) (<= MariaDB 10.4)",
Expand Down
10 changes: 7 additions & 3 deletions data/mysql-innodb-parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -717,15 +717,19 @@
"type": "boolean"
},
{
"cli": "--innodb-doublewrite[={OFF|ON}]",
"cli": "--innodb-doublewrite=value (≥ 8.0.30)--innodb-doublewrite[={OFF|ON}] (≤ 8.0.29)",
"default": "ON",
"dynamic": false,
"id": "sysvar_innodb_doublewrite",
"name": "innodb_doublewrite",
"scope": [
"global"
],
"type": "boolean"
"validValues": [
"ON",
"OFF",
"DETECT_AND_RECOVER",
"DETECT_ONLY"
]
},
{
"cli": "--innodb-doublewrite-batch-size=#",
Expand Down
3 changes: 2 additions & 1 deletion data/mysql-server-system-variables.json
Original file line number Diff line number Diff line change
Expand Up @@ -4083,7 +4083,8 @@
"id": "sysvar_xa_detach_on_prepare",
"name": "xa_detach_on_prepare",
"scope": [
"global"
"global",
"session"
],
"type": "boolean"
}
Expand Down
28 changes: 25 additions & 3 deletions dist/merged-raw.json
Original file line number Diff line number Diff line change
Expand Up @@ -19239,6 +19239,7 @@
]
},
"explicit_defaults_for_timestamp": {
"default": "1",
"name": "explicit_defaults_for_timestamp",
"type": "boolean",
"ids": [
Expand Down Expand Up @@ -33377,12 +33378,16 @@
},
"innodb_doublewrite": {
"default": "ON",
"dynamic": false,
"name": "innodb_doublewrite",
"scope": [
"global"
],
"type": "boolean",
"validValues": [
"ON",
"OFF",
"DETECT_AND_RECOVER",
"DETECT_ONLY"
],
"ids": [
{
"anchor": "innodb_doublewrite",
Expand Down Expand Up @@ -34753,6 +34758,22 @@
}
]
},
"innodb_log_file_buffering": {
"cli": "--innodb-log-file-buffering={0|1}",
"default": "OFF",
"dynamic": true,
"name": "innodb_log_file_buffering",
"scope": [
"global"
],
"type": "boolean",
"ids": [
{
"anchor": "innodb_log_file_buffering",
"url": "https://mariadb.com/kb/en/library/documentation/xtradbinnodb-server-system-variables/"
}
]
},
"innodb_log_file_size": {
"cli": "--innodb-log-file-size=#",
"dynamic": false,
Expand Down Expand Up @@ -44156,7 +44177,8 @@
"dynamic": true,
"name": "xa_detach_on_prepare",
"scope": [
"global"
"global",
"session"
],
"type": "boolean",
"ids": [
Expand Down
21 changes: 18 additions & 3 deletions dist/merged-raw.md
Original file line number Diff line number Diff line change
Expand Up @@ -16251,6 +16251,7 @@
|----|-----|
|Name|`explicit_defaults_for_timestamp`|
|Type of variable|`boolean`|
|Default value|`1`|

### Documentation(s)
|source|anchor name|
Expand Down Expand Up @@ -28221,10 +28222,9 @@
|name|value|
|----|-----|
|Name|`innodb_doublewrite`|
|Type of variable|`boolean`|
|Scope|`global`|
|Default value|`ON`|
|Dynamic|`false`|
|Valid value(s)|`ON`, `OFF`, `DETECT_AND_RECOVER`, `DETECT_ONLY`|

### Documentation(s)
|source|anchor name|
Expand Down Expand Up @@ -29299,6 +29299,21 @@
|mariadb.com|[innodb_log_compressed_pages](https://mariadb.com/kb/en/library/documentation/xtradbinnodb-server-system-variables/#innodb_log_compressed_pages)|
|dev.mysql.com|[sysvar_innodb_log_compressed_pages](https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html#sysvar_innodb_log_compressed_pages)|

## innodb_log_file_buffering
|name|value|
|----|-----|
|Name|`innodb_log_file_buffering`|
|Command line|`--innodb-log-file-buffering={0|1}`|
|Type of variable|`boolean`|
|Scope|`global`|
|Default value|`OFF`|
|Dynamic|`true`|

### Documentation(s)
|source|anchor name|
|------|----|
|mariadb.com|[innodb_log_file_buffering](https://mariadb.com/kb/en/library/documentation/xtradbinnodb-server-system-variables/#innodb_log_file_buffering)|

## innodb_log_file_size
|name|value|
|----|-----|
Expand Down Expand Up @@ -37275,7 +37290,7 @@
|Name|`xa_detach_on_prepare`|
|Command line|`--xa-detach-on-prepare[={OFF|ON}]`|
|Type of variable|`boolean`|
|Scope|`global`|
|Scope|`global`, `session`|
|Default value|`ON`|
|Dynamic|`true`|

Expand Down
25 changes: 22 additions & 3 deletions dist/merged-slim.json
Original file line number Diff line number Diff line change
Expand Up @@ -15075,6 +15075,7 @@
]
},
"explicit_defaults_for_timestamp": {
"default": "1",
"name": "explicit_defaults_for_timestamp",
"type": "boolean",
"ids": [
Expand Down Expand Up @@ -25955,12 +25956,16 @@
},
"innodb_doublewrite": {
"default": "ON",
"dynamic": false,
"name": "innodb_doublewrite",
"scope": [
"global"
],
"type": "boolean",
"validValues": [
"ON",
"OFF",
"DETECT_AND_RECOVER",
"DETECT_ONLY"
],
"ids": [
"58#innodb_doublewrite",
"59#sysvar_innodb_doublewrite"
Expand Down Expand Up @@ -27031,6 +27036,19 @@
"59#sysvar_innodb_log_compressed_pages"
]
},
"innodb_log_file_buffering": {
"cli": "--innodb-log-file-buffering={0|1}",
"default": "OFF",
"dynamic": true,
"name": "innodb_log_file_buffering",
"scope": [
"global"
],
"type": "boolean",
"ids": [
"58#innodb_log_file_buffering"
]
},
"innodb_log_file_size": {
"cli": "--innodb-log-file-size=#",
"dynamic": false,
Expand Down Expand Up @@ -34574,7 +34592,8 @@
"dynamic": true,
"name": "xa_detach_on_prepare",
"scope": [
"global"
"global",
"session"
],
"type": "boolean",
"ids": [
Expand Down
2 changes: 1 addition & 1 deletion dist/merged-ultraslim.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/merged-ultraslim.php

Large diffs are not rendered by default.

0 comments on commit dbb0cab

Please sign in to comment.